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

CSS How to Make a Website Customizing Colors and Fonts Use Classes in CSS

Sharanya Venkat
Sharanya Venkat
7,222 Points

class="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
Bertan Ulusoy
18,047 Points

Hi, 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"); )