1/*
2 CSS:
3 .active{
4 color: red;
5 font-weight: bold;
6 }
7*/
8/* Before Execution*/
9<a href="google.com" class="my-link">Google</a>
10$(".my-link").click(function() {
11 $(this).addClass("active");
12})
13______________________________________________
14/* After Execution*/
15<a href="google.com" class="my-link active">Google</a>
16