Skip to content

Instantly share code, notes, and snippets.

@1ambda
Created June 9, 2014 07:46
Show Gist options
  • Save 1ambda/a5e3093183105b3a6c43 to your computer and use it in GitHub Desktop.
Save 1ambda/a5e3093183105b3a6c43 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
// get submenu index
var index = $('#submenu').attr('number');
// show selected menu
selectedMenu(index);
});
function selectedMenu(index) {
$('menu ul').get(index).show();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment