У меня есть две кнопки ввода, на которых я хочу отображать приятное оповещение, когда пользователь нажимает на любую кнопку
Код: Выделить всё
1
adminMohammad
Farzin
2
1111
11
Код: Выделить всё
$(document).ready(function () {
document.querySelector('td.warning input').onclick = function () {
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: "warning",
showCancelButton: true,
confirmButtonClass: 'btn-danger',
confirmButtonText: 'Yes, delete it!',
cancelButtonText: "No, cancel plx!",
closeOnConfirm: false,
closeOnCancel: false
},
function (isConfirm) {
if (isConfirm) {
swal("Deleted!", "Your imaginary file has been deleted!", "success");
} else {
swal("Cancelled", "Your imaginary file is safe :)", "error");
}
});
};
});
когда я нажимаю вторую кнопку, ничего не происходит
Подробнее здесь: https://stackoverflow.com/questions/278 ... weet-alert