Last active
August 29, 2015 14:17
-
-
Save matdave/32502ea68e43c3201e8c to your computer and use it in GitHub Desktop.
nps menu expand
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$(".btn").click(function() { | |
if(!$(this).hasClass('close-schools')){ | |
$( ".school-list" ).addClass("expanded"); | |
$(this).addClass("close-schools"); | |
}else{ | |
$(this).removeClass("close-schools"); | |
$(".school-list").removeClass("expanded"); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment