-
Dhtml Window
http://www.dynamicdrive.com/dynamici...htmlwindow.htm
for this script, is it possible for me to use multiple windows?
if so how?
-
-
Maybe?
Maybe Just Repeat the code. Making it pop up 2 windows or how ever many times you specify the code.
Example:
<script>
if (ns6)
window.onload=new Function('loadwindow("http://www.firstsite.com",600,400)')
else
loadwindow("http://www.firstsite.com",600,400)
</script>
Then just repeat underneath....
<script>
if (ns6)
window.onload=new Function('loadwindow("http://www.secondsite.com",600,400)')
else
loadwindow("http://www.secondsite.com",600,400)
</script>
This should open 2 new windows...
-
-
-
-
Until this script is extensively modified, it is one DHTML window per page. You can however have multiple links on the page, each opening a different page in the one DHTML window when clicked. As it is now, onload, you are limited to one.
-
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