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 Adding New Attribute Values with attr()

rdaniels
rdaniels
27,258 Points

JQuery Basics: Code Challenge Adding new attribute values with attr()

any help with this would be greatly appreciated. I'm not even sure what he's asking us to do!

2 Answers

$('.external').attr('target', '_blank');

Is what you need to do. This says give all classes named "external" the attribute of target: '_blank'.

rdaniels
rdaniels
27,258 Points

Thank you! I had that almost exactly, but I didn't have the parenthesis or quotes around .external.... Thanks so much for your help and Quick response!!! Thumbs up!

Always happy to help out. This stuff can be tricky. If you wouldn't mind selecting my answer as the "Best Answer" it will show others this question has been answered and give me a few points. :)

Thanks!