Skip to content

Instantly share code, notes, and snippets.

@yamitake
Created July 11, 2012 03:43
Show Gist options
  • Select an option

  • Save yamitake/3087858 to your computer and use it in GitHub Desktop.

Select an option

Save yamitake/3087858 to your computer and use it in GitHub Desktop.
bootstrap-dropdown.jsをマウスオーバーで開く様にする。
//誰か解決方法を教えて。
$(function()
{
$(".dropdown").hover(function(){
$('body').trigger("click");
$(".dropdown-toggle" , this).trigger("click");
},function(){
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment