Skip to content

Instantly share code, notes, and snippets.

@michaelaguiar
Created November 10, 2011 18:34
Show Gist options
  • Select an option

  • Save michaelaguiar/1355690 to your computer and use it in GitHub Desktop.

Select an option

Save michaelaguiar/1355690 to your computer and use it in GitHub Desktop.
Javascript Confirm Method
$('SELECTOR').click(function(e) {
e.preventDefault();
if(confirm("MESSAGE TO DISPLAY TO USER") === true) {
window.location.href = $(this).attr('href');
} else {
// User Cancelled
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment