Guest_imported
New member
- Jan 1, 1970
- 0
I want to have a pop-up occur when a visitor leaves my site without purchasing...a 'one last chance'. Does anyone have examples of how to do this?
Thanks!
Thanks!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if (document.layers) document.captureEvents(Event.MOUSEUP);
document[document.layers?"onmouseup":"onclick"]=function(e) {
var s=e?e.target:event.srcElement;
if (s.hostname && s.hostname != location.hostname && (s.target == "" || s.target == "_self" || s.target == null))
alert('Bye!');
};
- UNIMENT