How can I use feature detection to determine whether a browser supports the :hover pseudo class? I want to do this WITHOUT using conditional comments to include ie6-specific script files if possible.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If it is ie6 or older, it doesn't support hover. Any other browsers that don't support hover are too old and obscure to worry about. EDIT It is possible to make |
|||||||||
|
|
The :hover pseudo-class is supported by standards compliant browsers. Browsers like IE6 will only support it for You can however use hover changes on any thing using jQuery, to name one.
In your css, use the class .hover in place of the pesudo-class :hover |
|||||||||||
|
body:hoverand then get the computed style for the body and see if it is set. I suspect that would break if the pointer was on the toolbar though. That said, if you are using:hoverfor anything more then an indication that it is worth clicking at the point the pointer is at, then you should probably be looking at JS anyway.:hoveris just too limiting and tends to mean you have a dependency on people using a pointing device, and on being able to hold it steady (difficult with, for example, arthritis). – Quentin Feb 9 '11 at 17:15