Skip to content

Instantly share code, notes, and snippets.

@jfranciscos4
Created March 18, 2013 19:42
Show Gist options
  • Save jfranciscos4/5190200 to your computer and use it in GitHub Desktop.
Save jfranciscos4/5190200 to your computer and use it in GitHub Desktop.
confirm jQuery
jQuery(document).ready(function() {
jQuery('.action-remover').click(function(event) {
if( !confirm('Deseja realmente excluir a foto?') )
{ event.preventDefault(); }
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment