Skip to content

Instantly share code, notes, and snippets.

@bigslycat
Forked from Msx1/main.js
Last active November 6, 2018 18:28
Show Gist options
  • Select an option

  • Save bigslycat/392ffb77e7aebde8fe724b4b2200b574 to your computer and use it in GitHub Desktop.

Select an option

Save bigslycat/392ffb77e7aebde8fe724b4b2200b574 to your computer and use it in GitHub Desktop.
$(document).ready(function () {
$('.deleteUser').on('click', deleteUser)
});
function deleteUser() {
alert('Опа ' + $(this).data('id') + ' гангнам стайл!');
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