Created
July 11, 2012 03:43
-
-
Save yamitake/3087858 to your computer and use it in GitHub Desktop.
bootstrap-dropdown.jsをマウスオーバーで開く様にする。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //誰か解決方法を教えて。 | |
| $(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