jquery change font color
$(this).css('color', 'red');
Here is what the above code is Doing:
1. We’re selecting all the tags on the page.
2. We’re adding a click event handler to each of them.
3. When the click event handler is called, we’re changing the color of the link to red.