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 trialSharanya Venkat
7,222 Pointsclass="selected" on nav a
How does every navigation a tag get the .selected class when it is applied only on the portfolio tag
2 Answers
Bertan Ulusoy
18,047 PointsHi, I think, this can be achieved with jQuery's addClass and removeClass functions. When a user clicks any navigation link in your app, you can remove .selected class from all, and after that add .selected class which link is selected by the user. So the color will change.
Question: How can I understand which link is clicked? Add (unique) "id" attribute to all of your links and in your (a href) click event function, get id attribute's value to check which link is clicked. (like --> var Id = $(selector).attr("id"); )
Bertan Ulusoy
18,047 PointsYou're welcome.
Sharanya Venkat
7,222 PointsSharanya Venkat
7,222 PointsThanks a lot. Got that..
Sharanya Venkat
7,222 PointsSharanya Venkat
7,222 PointsThanks a lot. Got that..