Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

A link to open up multiple pages using HTML

Status
Not open for further replies.

magicandmight

IS-IT--Management
Joined
Aug 27, 2004
Messages
77
Location
US
Is there a way to use one link to open up multiple pages using HTML?
 
Code:
<html>
<head>
<script>
function multiWin()
{
  window.open("[URL unfurl="true"]http://www.yahoo.com");[/URL]
  window.open("[URL unfurl="true"]http://www.google.com");[/URL]
  window.open("[URL unfurl="true"]http://www.tgreer.com");[/URL]
}
</script>
</head>
<body>
<a href="JavaScript:multiWin();">Open lots of windows.</a>
</body>
</html>



Thomas D. Greer

Providing PostScript & PDF
Training, Development & Consulting
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top