Im having problems with Safari (windows version).
I want to be able to open a pop up window and pass variables to it. But for some reason Safari is the only browser that does not support my code. Is there a work around?
Im trying to stay away from cookies/session and querystrings.
Code:function openWin() { newWindowObject = window.open('test.html','testWindow','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=550,height=450'); /* The "myVar1" and "myVar2" is not being passed to the new window with Safari */ newWindowObject.myVar1 = 'test1'; newWindowObject.myVar2 = 'test2'; }





Bookmarks