Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created October 8, 2012 22:06
Show Gist options
  • Select an option

  • Save hsquareweb/3855295 to your computer and use it in GitHub Desktop.

Select an option

Save hsquareweb/3855295 to your computer and use it in GitHub Desktop.
jQuery: Beforeunload (Popup on reload & change of page)
$(document).ready(function() {
$(window).bind("beforeunload", function() {
$("a#trigger").click();
return "Text goes here?";
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment