change active tab color Leave a Comment / Uncategorized / By Kanha Help Me <script> $(function () { $("li").click(function (e) { e.preventDefault(); $("li").removeClass("active"); $(this).addClass("active"); }); }); </script> Related