I'm working on a website which requires mouseover menu's. I would not recommend mouseover menu's from an accessibility point of view, but it's pretty easy to implement using jQuery.
The problem: we also need to support touchscreen devices (tablets). On such a device you don't have a mouse and, so the mouseover event is not working. I was hoping for jQuery to have a longpress event, but it doesn't. I did find a jQuery longclick plugin using Google, but it was for jQuery 1.4, so I'm not keen on using that. Also the jQuery plugin site is under maintenance at the moment, so that is not very helpful.
So the question: is there an elegant plugin for jQuery 1.7 / 1.8 to support longpress / longclick events?
Something you could do is use delayed checks with
setTimeout
during the various mouse events. Incorporating jQuery's$.data()
to store the timeout across events (on each element) should help you accomplish it all. Here's an example:HTML:
JS:
DEMO: http://jsfiddle.net/7jKYa/10/
There's a lot more to do with this, since you're also incorporating hovering, but for the most part, I think this does what you want.
It could easily be converted to a plugin if necessary, otherwise I think it could work fine alone. I hope this helps though!
You could time it.
It turns out that you can just use the existing longclick plugin for jQuery 1.4 with jQuery 1.8.