jQuery( document ).ready( function( $ ) { // Add more file $( '.rwmb-add-file' ).click( function() { var $this = $( this ), $fields = $this.siblings( '.file-input' ), $first = $fields.first(), $fileList = $this.closest('.rwmb-input').find( '.rwmb-uploaded' ), fileCount = $fileList.children('li').length, maxFileUploads = $fileList.data( 'max_file_uploads' ); console.log( $fileList ) if( ($fields.length + fileCount) < maxFileUploads || maxFileUploads <= 0) { $first.clone().insertBefore( $this ); } return false; } ); // Delete file via Ajax $( '.rwmb-uploaded' ).on( 'click', '.rwmb-delete-file', function() { var $this = $( this ), $parent = $this.parents( 'li' ), $container = $this.closest('.rwmb-uploaded') data = { action : 'rwmb_delete_file', _ajax_nonce : $container.data('delete_nonce'), post_id : $( '#post_ID' ).val(), field_id : $container.data( 'field_id' ), attachment_id: $this.data( 'attachment_id' ), force_delete : $container.data( 'force_delete' ) }; $.post( ajaxurl, data, function( r ) { var res = wpAjax.parseAjaxResponse( r, 'ajax-response' ); if ( res.errors ) alert( res.responses[0].errors[0].message ); else { $parent.remove(); $container.siblings('.new-files').removeClass('hidden'); if( $container.children('li').length <=0 ) { $container.addClass( 'hidden' ); } } }, 'xml' ); return false; } ); } );