Edit file File name : scripts.js Content : $(document).ready(function () { $('.delete-slider-image').click(function (e) { var r = confirm("Are you really want delete this picture?...."); if (r) { window.location.replace("delete/slider-image.php?img=" + this.id); } }); $('.delete-service').click(function (e) { var r = confirm("Are you really want delete this Service?...."); if (r) { window.location.replace("delete/service.php?id=" + this.id); } }); $('.delete-service-photo').click(function (e) { var r = confirm("Are you really want delete this picture?...."); if (r) { window.location.replace("delete/service-photo.php?img=" + this.id); } }); $('.delete-gallery-image').click(function (e) { var r = confirm("Are you really want delete this Photo?...."); if (r) { window.location.replace("delete/photo-gallery.php?img=" + this.id); } }); $('.delete-package-photo').click(function (e) { var r = confirm("Are you really want delete this picture?...."); if (r) { window.location.replace("delete/tour-package-photo.php?img=" + this.id); } }); $('.delete-tour-package').click(function (e) { var r = confirm("Are you really want delete this Package?...."); if (r) { window.location.replace("delete/tour-package.php?id=" + this.id); } }); $('.delete-tour-type').click(function (e) { var r = confirm("Are you really want delete this Type?...."); if (r) { window.location.replace("delete/tour-type.php?id=" + this.id); } }); $('.delete-testimonials').click(function (e) { var r = confirm("Are you really want delete this Testimonials?...."); if (r) { window.location.replace("delete/testimonials.php?img=" + this.id); } }); $('.delete-album-photo').click(function (e) { var r = confirm("Are you really want delete this Album Photo?...."); if (r) { window.location.replace("delete/album-photo.php?img=" + this.id); } }); $('.delete-group_tours').click(function (e) { var r = confirm("Are you really want delete this Group Tour?...."); if (r) { window.location.replace("delete/group-tours.php?img=" + this.id); } }); $('.delete-rent_a_car').click(function (e) { var r = confirm("Are you really want delete this Rent a car?...."); if (r) { window.location.replace("delete/rent_a_car.php?img=" + this.id); } }); }); Save