Template:SJTU-Software/wikiJs
$(document).ready(function(){ $(".fixed-nav").css("top",$(window).height()*0.3);
$("html").niceScroll();
$('.designNav').click(changePage); }); var changePage = function(){ var active = $(this).text(); console.log(active); var bros = $(this).siblings(); $("."+active).css("display","inline"); bros.each(function(){ active = $(this).text(); $("."+active).css("display","none"); }) }