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

Shiyue Sun
3,767 PointsWhy no need to use loops for adding attributes to all links?
//3. Add an attribute to each link so that all anchor tags open in a new tab. $('a').attr('target', '_blank');
We are using attr() method on all the links, not just one element. Why no need to use loops in this task?
1 Answer

Steven Parker
225,727 PointsThat's part of the magic of jQuery. When you create a jQuery object using a selector, it references every element that matches the selector. And when you apply a method to it, that method acts on every object referenced by the object.