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()
You're passing an invalid selector to children(). Instead of
children()
.children('.line_item_wrapper :first')
try
.children('.line_item_wrapper').first()