Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

sakatagintoki
12,624 PointsHow to append something to the END of a containing div?
I'm creating a div in jQuery, and I want to append it to the bottom of a div containing 3 other divs. I've tried:
var $button = $('<div type="button">Le Button</div>');
$containingDiv.append($button);
And also:
var $button = $('<div type="button">Le Button</div>').appendTo($containingDiv);
And both of these work. But the button div I append always appears at the TOP of the list, not at the END. It is important the button appears at the end, because the elements in the containing div are generated by AJAX. So, moving the button around with CSS positioning will not work.
Thanks ~Jay
1 Answer

sakatagintoki
12,624 PointsResolved. Please ignore.