mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-02-24 07:26:16 +08:00
9 lines
284 B
JavaScript
9 lines
284 B
JavaScript
|
$(document).on("click", ".cdelete", function(e) {
|
||
|
e.preventDefault();
|
||
|
var id = this.id;
|
||
|
bootbox.confirm("Are you sure?", function(result) {
|
||
|
if(result){
|
||
|
window.location.href = "index.php?_route=services/delete/" + id;
|
||
|
}
|
||
|
});
|
||
|
});
|