I call jquery function onclick at links. For example:
Content 1
Ok thanks for pasting the code, try this:
First wrap the group of anchor tags in a div, so you can seperate them out from the other anchors on your page, and they will be grouped:
So:
Then try this JQuery code:
$("#anchorGroup a").click(function() {
$("#anchorGroup a").removeClass('active');
$(this).addClass('active');
});