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 trialAndrés Colonna
1,925 Pointshow can I add the attribute to all the links?
I know how the method works, is just that I am not sure how to use it. can somebody please help me out.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
<title>Links Page</title>
</head>
<body>
<h1>Links</h1>
<ul>
<li><a href="http://google.com" class="external">Google</a></li>
<li><a href="http://yahoo.com" class="external">Yahoo</a></li>
</ul>
<script src="//code.jquery.com/jquery-1.11.0.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/app.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>
2 Answers
Carlos Federico Puebla Larregle
21,074 PointsYou have to select all the links that actually have that class already. You could do that like this:
$("a.external").attr('target','_blank');
Sorry, I thought it was other code challenge
Billy Bellchambers
21,689 PointsHi,
You haven't added any code in your js snipet but what the challenge is asking you to do is a couple of things.
1 select all achor elements using jquery
$("a")
2 add the class of "external" to all of them.
$("a").addClass("external")
3 lastly add the attribute of target with a value of _blank
$("a").addClass("external").attr("target", "_blank")
This is what the finished code looks like.
I hope this helps.
Happy coding.
Carlos Federico Puebla Larregle
21,074 PointsCarlos Federico Puebla Larregle
21,074 PointsRemember, you select all the anchor tags or "links" by using this selector:
$("a")
And if you need to select all the anchor tags who have the ".external" class you would do it like this:
$("a.external")