Skip to content

Instantly share code, notes, and snippets.

@detournemint
Last active August 29, 2015 14:02
Show Gist options
  • Save detournemint/bd4c558bca1ecf9a7bbf to your computer and use it in GitHub Desktop.
Save detournemint/bd4c558bca1ecf9a7bbf to your computer and use it in GitHub Desktop.
Javascript Button Handling
:javascript
$('.disconnect').click(function(event){
event.preventDefault();
var url = event.currentTarget.href
var isGood = confirm("Are You Sure?")
if(isGood){
$.ajax({
type:"POST",
url: url,
success: function(){
console.log("Success")
},
});
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment