I've been seeing guys do pop ups that open up in new tabs. I looked for the right script, but didn't find anything. Does anyone know how to make this happen or which ppv network has this as an option? Thanks.
What do you mean in new tabs? Tabs in Firefox and IE?
I remember only LinksAdor used to support that option.
Yeah like the pop up opening up in new tabs in chrome/firefox/IE instead of a whole new window.
Doesn't seem like LinksAdor is in business anymore.
Hmm , from what I read it's impossible to do it programmatically on all browsers.
There are some tricks that work only on certain browsers but won't work everywhere.
For firefox you could use :
<a href="some url" target="_newtab">content of the anchor</a>
Setting target to _blank should open a new tab in recent versions of Firefox and Chrome. Doesn't work that way on IE. AFAIK, the only acceptable options are _blank, _parent, _self, and _top. If anything else works it's because of the way the individual browser is error handling an unrecognized attribute value.
Here's some code you can test with in different browsers:
<html> <body> <a href="http://www.google.com" target="_blank">_blank</a> <br> <a href="http://www.google.com" target="_parent">_parent</a> <br> <a href="http://www.google.com" target="_self">_self</a> <br> <a href="http://www.google.com" target="_top">_top</a> </body> </html>