How to change the background color of UL 'li' on click?
EDIT i can change li "a" but what about the entire li
this works:
$(".clickableUL").click(function() {
$(this).find("li a").addClass("active");
});
but find("li") does nothing. I want the LI highlighted not just the text of the link.