カテゴリー表示など階層メニューに使えるアコーディオンのJQuery
$(function(){ | |
$("#category h3 span").on("click", function(){ | |
$(this).parent('h3').next('ul').slideToggle(); | |
$(this).toggleClass("active"); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment