I am working on mobile web and facing problem with mouseover/mouseout events used in js. These two events are used to change opacity of links. The problem is, I need to tap twice (testing on iPhone) to activate the link. My guess is, on first tap it consider the tap as mouseover event and second tap as click event.

Is there any way I can skip/disable/ignore these events for mobile web, so I don't need to tap twice?

Thanks

link|improve this question

feedback

2 Answers

Depending on your server-side set up, perhaps you could use user agent detection - and probably specifically the UAProf element of User Agent Detection, to serve javascript for specific devices?

This would allow you to cater for mobile devices in a number of different ways - this would help with any other 'over' event behaviour you may look to use - expanding a div based on mouseover etc.

There's a lot of information available already if you search for user agent detection - hope this helps.

link|improve this answer
I wonder if it would cause redundant code (not sure though). Thanks for the reply :) – Bongs Jun 24 '11 at 11:13
feedback

Did you take look at jQuery Mobile? This could solve a lot of mouse-related issues in a mobile app.

link|improve this answer
Yes, I am aware of jQuery Mobile. As it is still in beta mode this option is not opted. But yes, once it comes in stable mode, will be switching over it. – Bongs Jun 24 '11 at 11:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.