I made a proper plugin for the dropdown hover functionality, which works on every device:
mayur () - 9 years ago - Reply 0
I made a proper plugin for the dropdown hover functionality, which works on every device:
https://github.com/istvan-u...
István Ujj-Mészáros () - 9 years ago - Reply 0
Great plugin! Could you please submit that to Bootsnipp Resources? http://bootsnipp.com/resources
maxsurguy () - 9 years ago - Reply 0
When on lower resolution (collapsed menu), there's a continuous execution of the hover when collapsing the first menu and then steps on to the next menu. It becomes blinking. I would suggest to put .delay() between .stop() and .fadeIn()/.fadeOut().
visualjoel () - 9 years ago - Reply 0
How can I use it only for large screen and have default functioanlity for mobile screen?
Tiger In Den () - 9 years ago - Reply 0
what if i have multiple dropdown menu? how im going to align the list in every menu?
Joel () - 10 years ago - Reply 0
Yes definitely. Swap $('.dropdown-menu', this).fadeIn("fast"); and $('.dropdown-menu', this).fadeOut("fast"); with $('.dropdown-menu', this).stop( true, true ).fadeIn("fast"); and $('.dropdown-menu', this).stop( true, true ).fadeOut("fast"); to get rid of the common problem with animation queues.
Digitahlen () - 10 years ago - Reply 0