Skip to content

Instantly share code, notes, and snippets.

@Itachicz11
Created March 8, 2012 20:57
Show Gist options
  • Select an option

  • Save Itachicz11/2003403 to your computer and use it in GitHub Desktop.

Select an option

Save Itachicz11/2003403 to your computer and use it in GitHub Desktop.
This is my js file
jQuery(document).ready(function($) {
var horni_menu_li = $('#mine_menu #menu-horni-menu li')
horni_menu_li.hover(
function(){$(this).find('ul.sub-menu').css({visibility: "visible",display: "none"}).slideDown(180)},
function(){$(this).find('ul.sub-menu').slideUp(180)}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment