Please Help

willrey619

Newbie
Joined
Mar 29, 2013
Messages
13
Reaction score
0
Hi,

Whenever someone leaves my site by clicking on a link to another site on my website the link opens in a new tab on desktop or a new window on mobile. I was wondering when that new tab opens whether once there not viewing the old tab it could go onto another page automatically, like a thank you page with the social media links.

Hope that makes sense,

Thanks
 
I don't think so opening new tab is possible as most browsers hate this. This is some sort of popup.
 
try too add a js listener to all links, on the click check if its a external website and open new window with opener.
becouse you got user action you got permission to open new window:
HTML:
// just draft
$("a").click(function(){
if ($(this).attr("target") == "blank") {
var win = window.open("http://youlink", '_blank');
win.focus();
}
});
 
Back
Top