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()
Try this:
var $firstDiv = $(".sector_order > .line_item_wrapper:eq(0)");
This will get you the first direct descendant of sector_order with the class line_item_wrapper.
sector_order
line_item_wrapper
Example fiddle