execute js when user navigates away / closes the browser window


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $(window).bind('beforeunload', function() {
  2. if (iWantTo) {
  3. return 'you are an idiot!';
  4. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.