rturner003
Programmer
On Microsoft IE I am calling up a page in a pop up window and it is also stored on a different server. My problem is communicating between these windows/pages. Window.opener just stops the JS working.
The code that calls the popup is a follows:
function popUp(URL) {
day = new Date()
id = day.getTime()
eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=350,height=400');"
}
function getAdds() {
search_chars=document.myform.v17.value
if (search_chars.length==0) return
window.name='fred'
url1="popUp(url1)
}
The window.name line did not seem to have any effect. I am sure there is something I am missing!!!
Robert T Turner
The code that calls the popup is a follows:
function popUp(URL) {
day = new Date()
id = day.getTime()
eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=350,height=400');"
}
function getAdds() {
search_chars=document.myform.v17.value
if (search_chars.length==0) return
window.name='fred'
url1="popUp(url1)
}
The window.name line did not seem to have any effect. I am sure there is something I am missing!!!
Robert T Turner