Skip to content

Instantly share code, notes, and snippets.

@Msx1
Created November 6, 2018 18:01
Show Gist options
  • Select an option

  • Save Msx1/92c9872039561f7d9bf3753ca9af25b6 to your computer and use it in GitHub Desktop.

Select an option

Save Msx1/92c9872039561f7d9bf3753ca9af25b6 to your computer and use it in GitHub Desktop.
$(document).ready(function () {
$('.deleteUser').on('click', deleteUser)
});
function deleteUser() {
if (confirm('Are You Sure?')) {
$.ajax({
type: 'DELETE',
url: '/users/delete/' + $(this).data('id')
}).always(function (response) {
window.location = '/';
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment