Skip to content

Instantly share code, notes, and snippets.

@valdiney
Created March 3, 2014 02:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valdiney/9317271 to your computer and use it in GitHub Desktop.
Save valdiney/9317271 to your computer and use it in GitHub Desktop.
var deletarDados = document.querySelector('#deletar');
deletarDados.onclick = function() {
var confirmoDeletar = confirm('Deseja Realmente Deletar?');
if( confirmoDeletar ) {
return true
}
else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment