User jQuery('.clear_pro_btn').click(function(){ var pId = jQuery(this).attr('data-pid'); parentRow = jQuery(this).closest('.product-id-'+pId); parentRow.find('.product_code').val(''); parentRow.find('.p_depth').val(''); parentRow.find('.p_width').val(''); parentRow.find('.variation-select').val(''); parentRow.find('.p_bmt').val(''); parentRow.find('.p_length').val(''); parentRow.find('.p_weight').val(''); parentRow.find('.pa_use-type').val(''); parentRow.find('.pf_add_to_project').attr('data-vpid', '').hide(); parentRow.find('.pf_pdf_preview').attr('href', 'javascript:void(0);').hide(); parentRow.find('.clear_pro_btn').attr('data-pid', ''); }); prevent below call when clear $('.product_code').on('blur input', function(e) { e.preventDefault(); var thisVal = $(this); var sku = thisVal.val(); var parentProductId = thisVal.attr('data-pid'); console.log(parentProductId); console.log("dfd"+sku); $.ajax({ type: 'POST', url: '', data: { […]