Chris Divyak

Results 3 comments of Chris Divyak

You can do it by changing the init() function parameters to 'mouseover' instead of 'click.' ``` function init() { $menuItems.on( 'mouseover', open ); $listItems.on( 'click', function( event ) { event.stopPropagation();...

Yes, you can add a setTimeout function after the open function. Replace the function open(event){...} with the following: function open( event ) { setTimeout(function(){ if( current !== -1 ) {...

You should be able to do this by just adding to the init() function and appending a new variable for the nav. I tested it and it seems to work....