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! While you're at it, check out some resources Treehouse students have shared here.

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

JavaScript

How 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

Resolved. Please ignore.