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 (2014) Creating a Simple Lightbox Perform: Part 2

What 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
Steven Parker
229,732 Points

The 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.

Thank you Steven!