Skip to content

Instantly share code, notes, and snippets.

@liorrozen
Last active August 29, 2015 13:58
Show Gist options
  • Save liorrozen/10389781 to your computer and use it in GitHub Desktop.
Save liorrozen/10389781 to your computer and use it in GitHub Desktop.
<script>
var user_already_annoyed = false;
window.onbeforeunload = function() {
if ( !user_already_annoyed ){
lpTag.vars.push([{ scope:"page", name:"tryclose", value:"true" }]);
lpTag.vars.send();
user_already_annoyed = true;
return "Please don't leave just yet. Click 'stay on this page' for a nice discount!";
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment