Created
October 14, 2012 08:46
-
-
Save cxytomo/3888047 to your computer and use it in GitHub Desktop.
dropdown js (only mouseover)
This file contains 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
document.getElementsByClassName('open')[0].addEventListener('mouseover',function(){ | |
var el,show; | |
el = document.getElementsByClassName('open')[0]; | |
show = el.getElementsByClassName('dropdown-menu')[0]; | |
show.style.display = "block"; | |
},false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment