edit.js 354 B

12345678910
  1. $(function()
  2. {
  3. $("div.fileBox:has(ul.files-list)").find(".file-input-list").hide();
  4. $(document).on('click', '[onclick*=deleteFile]', function() {
  5. $(this).parents('div.isdeleted').remove();
  6. $(this).parents('div.fileBox').find('.file-input-list').show();
  7. $(this).parents('div.fileBox').find('.fileType').hide();
  8. });
  9. })