Christine Kuehnel: window_open in Netscape

Beitrag lesen

Hallo,

test=open("01.html", "test","width=150,height=114");
test.moveTo(0,143);                   A
--> funktioniert!!                    
test=open("01.html", "test","width=150, height=114");
test.moveTo(0,143);                   A
--> funktioniert nicht!              
kann mir das jemand erklären????

Ja, Netscape:
  "open
   Opens a new web browser window.
   ...
   Syntax
   open(URL, windowName[, windowFeatures])"
   ...
   windowFeatures is an optional string containing a comma-separated list of options
   for the new window (do not include any spaces in this list)..."

Die FAQ von de.comp.lang.javascripts weiss auch "Welche Fallstricke es beim beim Öffnen eines Fensters gibt": http://irb-www.informatik.uni-dortmund.de/~sm/aw/js/faq/

Christine