$(document).ready(function() {
$('blockquote span.delete').click(function() {
var parent = $(this).closest('blockquote');
var id = parent.find('.id').text;
$.confirm({
'title': 'Удаление цитаты',
'message': 'Вы точно хотите удалить цитату? Она совсем-совсем удалится!',
'buttons': {
'Удалить': {
'class': 'blue',
'action': function() {
$.ajax({
'url': '/delete',
'method': 'POST',
'data': {
'id': id
}
});
parent.slideUp();
}
},
'Оставить': {
'class': 'gray'
}
}
});
});
});