Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've noticed on a lot of sites recently that the hover state is being achieved on links.

For example there is a bunch of links, you touch one, it turns red, you touch it again and the link works.

I have tried various CSS methods to achieve this but so far no luck.

Can anyone shed any light?

Cheers

share|improve this question

migrated from webmasters.stackexchange.com Oct 31 '12 at 1:34

3 Answers

up vote 0 down vote accepted

Here is an article that talks about the iOS :hover/double tap issue .

share|improve this answer

That's not a hover event, to me it seems more like a click event. You click, the color changes (or better still, it toggles)

share|improve this answer
I think it's hover as by going to the same site on a computer, you see the event happening on hover. – Mick79 Oct 31 '12 at 0:00
It is actually a TAP event! – Mohamed Anis Dahmani Oct 31 '12 at 0:01
Go to eBay.com/electronics and use the nav menu down the side of the page. On a desktop the drop down menus appear when you hover over them. However on iPad you need to touch the nav to make the drop down menus appear. – Mick79 Oct 31 '12 at 0:04
if you set up a hover, when you visit a site with a touch device, you have to click on the item, hence briefly "hovering" it, and it will trigger the hover event. – Akmur Oct 31 '12 at 0:05
I am looking for the "hover" event to stay until it is touched a second time. Check out the eBay example I put above. – Mick79 Oct 31 '12 at 0:10
show 1 more comment

Well, you can try these toggle/switch examples: css toggle

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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