I have four links:
<a href="http://google.com" target="_blank">Google</a>
<a href="http://bing.com" target="_blank">Bing</a>
<a href="http://yahoo.com" target="_blank">Yahoo</a>
<a href="http://wikipedia.com" target="_blank">wiki</a>
When I click on a link, it will opens in a new window. And on click to another link, it will opens in the same window opened last time.
It is not good for me, I want to open a blank window on every single click, regardless of the opened windows.
How can I handle this? (I don't care about double-click Google link opens it twice, doesn't matter.)
And this is works, just it have to.
EXCUSE ME, communication problem with my PHP beast.
So, actually the links are like:
<a href="javascript:;" onclick = "window.open('http://google.com','Admin');">gaagle</a>
<a href="javascript:;" onclick = "window.open('http://bing.com','Admin');">bang</a>
<a href="javascript:;" onclick = "window.open('http://yahoo.com','Admin');">yahuu!</a>
And now, all the stuffs opens to the same window, because of the name tag (2nd param of window.open) -.- And since all the opened window's ID was Admin, every other windows opened on that window. I did not checked it, excuse me for wasting your time.