1
I have been trying to add a class to my navbar links dynamically with jquery onclick function
so i can highlight the current active link
but it is not assigning the class on navbar in theme.html
le="color: #000000"><?php $(document).ready(function() { $('#jsddm').click(function() { $(this).removeClass("selected"); $(this).addClass("selected"); }); }); <ul id="jsddm"> <li><a href="<{$xoops_url}>">Home</a> </li> <li><a href="<{$xoops_url}>/modules/topics/index.php">topics</a></li> </ul>