(function ($) { $(function () { var pCount = $('#post_features_count').val(); $('.docopy-product-feature').click(function(){ pCount++; $('.product-features-wrapper').append('

Product Feature '+pCount+'

'+ 'Delete Feature
'+ '

Feature Name

'+ ''+ '

Feature Description

'+ ''+ '

Feature Icon

'+ 'Add your fontawesome icon. Example: fa-shield. Full list of icons is here'+ ''+ '
' ); }); $(document).on('click', '.delete-single-feature', function(){ // alert('test'); $(this).parents('.single-feature').remove(); }); }); }(jQuery));