Alguien sabe si se puede abrir un popup cuando el usuario abandona el dominio? (sitio), para que asi mientras navega las paginas internas no aparezca y solo lo haga cuando intenta ir a otro sitio...desde ya gracias.-
De momento tengo algo asi:
Código PHP:
<html>
<head>
<script>
function checkExit(){
var win = window.open("","","width=50,height=50");
win.blur();
win.document.write("<script>");
win.document.write("setTimeout(\'checkDomain()\',1000);\n");
win.document.write("function checkDomain(){ ");
win.document.write("try {");
win.document.write("if(window.opener) var x = window.opener.location.href;\n");
win.document.write("self.close();}");
win.document.write("catch(e){window.alert(\'haz dejado el dominio!!!\');}");
win.document.write("}");
win.document.write("<\/script>");
}
</script>
</head>
<body onunload="checkExit();">
<a href="http://www.dominio.com/testdomain.php">quedarse en el mismo dominio</a><br>
<a href="http://www.google.com">abandonar sitio, saltara popup</a><br>
</body>
</html>