Is there anything that I can suffix to a url so that it opens in new browser window instead of redirects?
I saw a few suggestions on the web, but nothing actually works.
for example: http://www.zzz.com\?tp=win95 target=_blank
Is there anything that I can suffix to a url so that it opens in new browser window instead of redirects?
I saw a few suggestions on the web, but nothing actually works.
for example: http://www.zzz.com\?tp=win95 target=_blank
You have to set target="_blank"
attribute on your link
For example :
<a href="http://www.zzz.com\?tp=win95" target="_blank"/>
No, that has to be specified by the link itself:
<a href="http://www.zzz.com\?tp=win95" target="_blank"/>
or by JavaScript:
window.open(URL,name,specs,replace);
Here's a link to the JS method: http://www.w3schools.com/jsref/met_win_open.asp
You leave the target as blank.
<a href="http://www.google.com/" target="_blank">Google</a>