soundasleep / jquery-dropdown

Bootstrap-style dropdowns with some added features and no dependencies.
Other
767 stars 266 forks source link

Change click to hover #48

Closed Mouki closed 11 years ago

Mouki commented 11 years ago

can you help me changing the event from click to hover?

claviska commented 11 years ago

That's outside the scope of this plugin. You're welcome to fork it, but keep in mind that it won't work properly on touch devices and generally makes for bad usability.

On Sep 29, 2013, at 3:17 AM, Mouki notifications@github.com wrote:

can you help me changing the event from click to hover?

— Reply to this email directly or view it on GitHub.

Balauue commented 10 years ago

I like the behaviour of allowing both hover and click.

I added the line

    $(document).on('mouseenter.dropdown', '[data-dropdown]', show);

to the JS. This makes the dropdown appear on hover.