plik skryptu
jQuery(document).ready(function() { $('#mainftp').uploadify({ 'uploader' : 'js/uploadify/uploadify.swf', 'script' : 'js/uploadify/uploadify.php', 'multi' : true, 'auto' : true, 'height' : '30', 'width' : '250', //'sizeLimit' : '51200', //limit wielkości plików 'simUploadLimit' : '3', 'buttonImg' : 'img/button.png', 'cancelImg' : 'img/cancel.png', 'fileDesc' : 'jpg/jpeg/doc', 'fileExt': '*.jpg;*.jpeg;*.png;*.docx;' , 'folder' : 'files', onProgress: function() { $('#loader').show(); }, onAllComplete: function() { $('#loader').hide(); $('#allfiles').load(location.href+" #allfiles>*",""); } }); $('ul li:odd').addClass('odd'); }); $(function() { $(".delete").click(function() { var commentContainer = $(this).parent(); var id = $(this).attr("id"); var string = 'id='+ id ; $.ajax({ type: "POST", url: "delete.php", data: string, cache: false, success: function(){ commentContainer.slideUp('slow', function() {$(this).remove();}); } }); return false; }); });