Home › Forums › JavaScript › jQuery UI append to child of draggable › Reply To: jQuery UI append to child of draggable
September 22, 2014 at 11:43 pm
#184183
Participant
The purple boxes do append to the red boxes.
“append” means “insert at the end of.” Perhaps you actually want them inserted after the red boxes? Look at $.insertAfter
. You’d need to handle the red and purple drops differently, though, since it seems you do want the red boxes appended to the drop area.