How can i select only the first child of a particular class of a parent with a particular class for the purposes of clone()?
clone()
Use :first-child
:first-child
var form1 = $(this).closest('.sector_order').find(':first-child');
OR .first()
.first()
var form1 = $(this).closest('.sector_order').find('.line_item_wrapper').first();