There is a technique called duell and it is used for accessibility reasons in websites. It is used from people that can only move a device (i.e mouse.) and it works like this. On hover effect hovering lasts longer than lets se as an example 1 sec then the click function is triggered. I want to emulate this with jquerry for my button elements in my hmtl.
|
feedback
|
Edited to avoid multiple clicks. (Thanks, Alnitak) | |||||||
feedback
|
This solution uses timers. Starts a timer when you hover over the element and clears it when you stop hovering over it. Obviously this only works for 1 button, but you could easily modify it to work for all buttons on your page. | |||
|
feedback
|
|
I knocked out a quick jQuery plugin to do what you asked. Source (and demo) at http://jsfiddle.net/raybellis/tF833/ For reference here, the (current) code looks like:
| |||||||
feedback
|