Book Club 스킨 NavBar 'current' 표시 형태 수정
$(window).load(function(){ $gnb.find("li").each(function(){ gnbWidth = gnbWidth + $(this).outerWidth() + 1; if ( window.location.pathname.indexOf($(this).find("a").attr("href")) != -1 ){ $(this).addClass("current"); } }); $gnb.find("ul").width(gnbWidth); if ( $gnb.width() 티스토리 북클럽 스킨의 script.js 파일의 GNB 관련 코드입니다. GNB는 블로그 페이지 상단의 내비게이션 바 메뉴를 말합니다. 1. 현재 페이지가 메뉴 항목과 일치하면 "current" 클래스를 추가합니..
2021.08.24