Skip to content

Instantly share code, notes, and snippets.

@fazlurr
Created April 23, 2014 10:42
Show Gist options
  • Select an option

  • Save fazlurr/423a7440cb9ca88beded to your computer and use it in GitHub Desktop.

Select an option

Save fazlurr/423a7440cb9ca88beded to your computer and use it in GitHub Desktop.
jQuery function to show popup on window close
$(window).bind("beforeunload", function() {
return confirm("Do you really want to close?");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment