In my jQuery am displaying my results in a table formatted output, a part of my jQuery is
-
2020-12-24 12:07
You need to add confirm() to your deleteItem();
function deleteItem() {
if (confirm("Are you sure?")) {
// your deletion code
}
return false;
}
|