L
Lethal Possum
Hi all,
I'm trying to make the following script work on Internet Explorer:
function choose_target(form) {
if (form.popup.checked == true) {
form.target = '_blank';
} else {
form.target = '_self';
}
return true;
}
This works fine in Firefox but IE says the form object has no target
property! I thought the target property was pretty standard? Is there
something I don't get here?
Thanks in advance for your help.
Thomas
I'm trying to make the following script work on Internet Explorer:
function choose_target(form) {
if (form.popup.checked == true) {
form.target = '_blank';
} else {
form.target = '_self';
}
return true;
}
This works fine in Firefox but IE says the form object has no target
property! I thought the target property was pretty standard? Is there
something I don't get here?
Thanks in advance for your help.
Thomas