You have to add the class via JS. Here is a starting point...
$('liSelectorGoesHere').click(function (e) {
$(this).addClass('active');
});On Sun, Mar 25, 2012 at 12:47 AM, erwin <[email protected]> wrote: > how the active li item is set ? > clicking on any item now doesn't set it to active class .. > > where should I look first for trying to solve this issue ... ? any > clue ? > > thanks of feedback
