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 jQuery Basics Understanding jQuery Events and DOM Traversal Adding New Elements to the DOM

Piotr Manczak
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Piotr Manczak
Front End Web Development Techdegree Graduate 28,940 Points

.appendTo()

What about .appendTo() method? I spotted this method in jQuery documentation and it seems like it's slightly better than append().

$( "<button>Reveal Spoiler</button>" ).appendTo( ".spoiler" )

In one line it's all done.

1 Answer

Steven Parker
Steven Parker
229,786 Points

As described on the documentation page:

The .append() and .appendTo() methods perform the same task. The major difference is in the syntax-specifically, in the placement of the content and target.

So as long as you observe the proper syntax, you can get exactly the same results with either one.