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 trialGrace Ji
5,402 PointsWhat is a difference between attr() and append()?
they seem to act the same, adding elements behind the matched elements. What is different?
1 Answer
Steven Parker
231,236 PointsThe difference is attributes vs. elements.
These do rather different things:
The attr function will get the value of an attribute for an existing element or set one or more attributes on existing elements. The DOM structure remains unchanged.
The append function will add one or more new elements to the DOM structure.
For more details see the jQuery documentation pages for append and attr.
Grace Ji
5,402 PointsGrace Ji
5,402 PointsThank you Steven!