smumpkins Posted November 24, 2008 Share Posted November 24, 2008 Basically, I'm looking for a way for a single link to open multiple pages at once. I'm doing this for a work related project, and it would certainly make things easier. If anyone knows a way to use javascript to do this, I would greatly appreciate it if you could pass that information onto me. Please and thank you! Quote Link to comment Share on other sites More sharing options...
ChaoticFission Posted November 24, 2008 Share Posted November 24, 2008 what are the targets? are they iframes? if that's the case, you can write a function that targets them sequentially. Quote Link to comment Share on other sites More sharing options...
elcid42 Posted December 7, 2008 Share Posted December 7, 2008 A JavaScript routine would do this, but no way using standard HTML. Something like this should work... <html> <head> <title>Multiple Pages</title> <script type="text/javascript"> function Googles() { var http1 = "http://www.google.com/"; var http2 = "http://www.yahoo.com/"; var http3 = "http://www.msn.com/"; var win1 = window.open(http1); var win2 = window.open(http2); var win3 = window.open(http3); } </script> </head> <body> <a href="java script:Googles()">Search Engines</a> </body> </html> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.