How can I open multiple links using a single anchor tag

I searched for that but unfortunately all methods I found don’t work. I have one way to that with JS (but one linkwill open in the current tab):

HTML Code:

<a id="myId">go</a>

JS Code:

myId.onclick = function(){
   open('https://www.example1.com');
   location.href = ('https://www.example2.com');
}

So here it will open example1.com in another tab.

Then in the current tab, will open example2.com

Note: The order of JS Lines is required otherwise it will not work.


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>

Tags:

Html

Anchor