<script>
$(function () { $("li").click(function (e) { e.preventDefault(); $("li").removeClass("active"); $(this).addClass("active"); }); }); </script>
0 Comments
Post a Comment