Guest User

Untitled

a guest
Jan 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. window.onbeforeunload = () => {
  2. var r = confirm('Are you sure?');
  3. if(r) {
  4. return true;
  5. } else {
  6. return false;
  7. }
  8. };
Add Comment
Please, Sign In to add comment