Skip to content

Instantly share code, notes, and snippets.

@sudopower
Created October 10, 2019 09:40
Show Gist options
  • Save sudopower/710468d8182b1781d77b5929367f2466 to your computer and use it in GitHub Desktop.
Save sudopower/710468d8182b1781d77b5929367f2466 to your computer and use it in GitHub Desktop.
Prevent Redirection by accidentally clicking on link
jQuery("a").click(function(e) {
var leave = confirm("Whoa ! 😮 I dare you press ok");
if(leave){
var really = confirm("Ok is for losers ! Cancel is FTW 😎");
if(really){
window.close();
}else{
event.preventDefault();
}
}
else{
event.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment