JAVAEOC
04-02-2005, 08:53 PM
newdoc = "";
function Create(){
newdoc = window.open('sURL_here', true);
}
function Change(){
alert(newdoc.document.getElementsByName("top").value);
}
when I call the change function I get this error: Error: uncaught exception: Permission denied to get property HTMLDocument.getElementsByName
how can I fix this, get around it???
thanks
function Create(){
newdoc = window.open('sURL_here', true);
}
function Change(){
alert(newdoc.document.getElementsByName("top").value);
}
when I call the change function I get this error: Error: uncaught exception: Permission denied to get property HTMLDocument.getElementsByName
how can I fix this, get around it???
thanks