Hi,
I'm hoping someone can help me with this.
I am opening a window, and based on certain actions within the window, I call a function within the 'opener' to submit the form. The code for the function looks something like this:
function loadOfficeID(vid,vName){
document.forms[0].OfficeID.value=vid
document.forms[0].action = "welcome.asp?action=select"
document.forms[0].submit()
}
Now, this code works perfectly fine in IE and NS6+. But in NS 4.76, I get an error
Illegal URL method 'welcome.asp?action=select'
And it happens only when I call this function from a different window.
Any ideas?!
Thanks!
I'm hoping someone can help me with this.
I am opening a window, and based on certain actions within the window, I call a function within the 'opener' to submit the form. The code for the function looks something like this:
function loadOfficeID(vid,vName){
document.forms[0].OfficeID.value=vid
document.forms[0].action = "welcome.asp?action=select"
document.forms[0].submit()
}
Now, this code works perfectly fine in IE and NS6+. But in NS 4.76, I get an error
Illegal URL method 'welcome.asp?action=select'
And it happens only when I call this function from a different window.
Any ideas?!
Thanks!