Skip to Content
0
Former Member
Dec 08, 2009 at 02:45 PM

Javascript in WAD

32 Views

I have written a simple script to for a popup window within a script web item. The script runs fine, except it does not show the content of the popup window.

my_window= window.open ("",
  "mywindow1","status=1,width=350,height=150"); 
my_window.document.write('<H1>Popup Test!</H1>');

I was expecting the popup window ot show 'Pop up Test".

Anyidea?