Skip to content

Instantly share code, notes, and snippets.

@tao-s
Created June 21, 2019 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tao-s/505373547e5746060f85ece9bffb8b19 to your computer and use it in GitHub Desktop.
Save tao-s/505373547e5746060f85ece9bffb8b19 to your computer and use it in GitHub Desktop.
Sample script for menu
window.addEventListener('load',function(){
$('#spMenuButton').click(function(){
if($('#leftcolumn').hasClass('open')){
$('#leftcolumn').addClass('open');
}else{
$('#leftcolumn').removeClass('open');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment