Skip to content

Instantly share code, notes, and snippets.

@mattmawhinney
Last active December 19, 2015 14:19
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 mattmawhinney/5968908 to your computer and use it in GitHub Desktop.
Save mattmawhinney/5968908 to your computer and use it in GitHub Desktop.
$(document).ready(function () {
$('#blogs').hover(
function () {
//show its submenu
$('ul', this).stop().slideDown(400);
},
function () {
//hide its submenu
$('ul', this).stop().slideUp(200);
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment