I would like to open multiple tab in the main browser: Here is my code:
function openSM()
{
window.open("http://www.google.com","_blank");
window.open("http://www.yahoo.com","_blank");
window.open("http://www.bing.com","_blank");
}
...
<div onClick="openSM()"> This is a div </div>
But only the first window open in new tab, the other windows open in a new browser. What I should do to open every page in the same browser?