Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | RE: [flasher] Re: Test popup with NS6 |
From: | JGL |
Date: | Mon, 05 Feb 2001 16:21:12 -0000 |
Hey, I tried that and it works on my end.
The system I have available to me for installing NS6 is busy.
Now could another NS6 user test again?
http://www.designthenet.com/tutes/popup2/popup2.html
thanks!
jgl
-----Original Message-----
the javascript window.open() function returns the window object of the
popup. Therefore, if you do like this:
<a href="javascript:window.open(blabla...)">
this means that the browser will follow the link of the result from the
function => you get the [Object] stuff...
the simplest workaround is to do like this instead:
<a href="javascript:void(window.open(blabla...))">
void takes any function result and turns it into false.
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]