view the Jooria_Delete/Jooria_Delete_0.2.js file

from 'view Jooria_Delete/Jooria_Delete_0.2.js content + editor' you can add some codes in this file with php editor.
file name: Jooria_Delete/Jooria_Delete_0.2.js
Size: 662 B
date: 9 months ago

This file is located in Jooria_Delete.zip

(function($) {
    $.fn.Jooria_Delete = function(name,message) {
            $(this).click(function() {         
            var id = $(this).attr("id");
            var dataString =  name +'='+ id ;
            var parent = $(this).parent();
            
            if(confirm(message)) {
                $.ajax({
                    type: 'POST',
                    data: dataString,                 
                    success: function() {
                        parent.fadeOut('slow', function() {$(this).remove();});
                    }
                });
            }
            return false;
        });
    };
})(jQuery);