HOME


Mini Shell 1.0
DIR: /home/islapiiu/sites/visitlanka/control-panel/delete/js/
Upload File :
Current File : /home/islapiiu/sites/visitlanka/control-panel/delete/js/banner.js
$(document).ready(function () {
    $('.delete-banner').click(function () {

        var id = $(this).attr("data-id");

        swal({
            title: "Are you sure?",
            text: "You will not be able to recover this imaginary file!",
            type: "warning",
            showCancelButton: true,
            confirmButtonColor: "#DD6B55",
            confirmButtonText: "Yes, delete it!",
            closeOnConfirm: false
        }, function () {

            $.ajax({
                url: "delete/ajax/bannr.php",
                type: "POST",
                data: {id: id, option: 'delete'},
                dataType: "JSON",
                success: function (jsonStr) {
                    if (jsonStr.status) {

                        swal({
                            title: "Deleted!",
                            text: "Your imaginary file has been deleted.",
                            type: 'success',
                            timer: 2000,
                            showConfirmButton: false
                        });

                         $('#div' + id).remove();

                    }
                }
            });
        });
    });
});