I have below code
$('li').click(function(e){
e.preventDefault();
$(this).addClass("active1");
// $(this a).addClass("acolor"); // I am trying this
});;
Anchor tag is inside li tag and on click of li I want to change color of a text - which is there in css in .acolor class
in this I am getting li, and I want to get a tag.
Any help will be appreciated !! Thanks