-
how to open two mini pop up window
I like to have the fetures to open two mini pop up windows per page using less Java codes.
Currently I am using following code:
<a href="javascript:void(window.open('../mypath/bla.html','_newwindow', 'toolbar=no,location=no,status=no,directories=no,menubar=no,scrolling=no,scrollbars=yes,width=480,height=360,resize=no'))">bla bla</a>
Now the problem is, it doesn't let you open two seperate window for two links. What I am trying to say is that after opening the first one if I click the next link (which has a different window size requirement) new contents replaced the first window. I tried using target=_blank code but it doesn't work. Can someone please help me to resolve this? Thanks!
-
-
I think you need to change the new window's name each time, like so:
<a href="javascript:void(window.open('../mypath/bla.html','_newwindow', 'toolbar=no,location=no,status=no,directories=no,menubar=no,scrolling=no,scrollbars=yes,width=480,height=360,resize=no'))">bla bla</a>
cr3ative
-
-
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks