How can I open multiple links using a single anchor tag

Acidic Cloud picture Acidic Cloud · Dec 20, 2012 · Viewed 67.1k times · Source

So here's a simple but interesting question, how can I open multiple links using single <a> element?

Using this only opens the first href

<a href="http://www.google.com" href="http://www.yahoo.com" target="_blank">Click Here</a>

Answer

Mr. Alien picture Mr. Alien · Dec 20, 2012

You can certainly try this

Demo

<a href="http://www.microsoft.com" target="_blank" onclick="window.open('http://www.google.com'); window.open('http://www.yahoo.com');">Click Here</a>