Skip to content

Instantly share code, notes, and snippets.

@lakshmankumar12
Created April 9, 2016 16:48
Show Gist options
  • Save lakshmankumar12/30022757946003d279f5e0c2c0f5d180 to your computer and use it in GitHub Desktop.
Save lakshmankumar12/30022757946003d279f5e0c2c0f5d180 to your computer and use it in GitHub Desktop.
Make a web-page not exit on ctrl-w
window.onbeforeunload = function(){
return 'Are you sure you want to leave?';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment