help.js 242 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 /** * Created by moli on 15/8/6. */ $(function(){ $(".menu").on("click", "li", function(){ $(".menu li").removeClass("on"); $(this).addClass("on"); $(".help-cont").hide().eq($(this).index()).show(); }); });