Has anyone noticed an issue with links on chrome that prevents the pointer to be shown on hover with inspector activated?
css, google-chrome, google-chrome-devtools, web-inspector
Solution
This is caused by having Emulate touch events selected in your Web Inspector settings. Just untick and you're good to go.
Problem
On Chrome version 26.0.1410.43 m, I was wondering if anyone had noticed the following issue... The cursor no longer appears on links hover while the chrome-devtools inspector is activated... Additionally, there is a user agent stylesheet applied to links ``` a:-webkit-any-link { color: -webkit-link; text-decoration: underline; cursor: auto; } ``` Is this a duplicate of the following as it is observed on a more recent version of Chrome exclusively as well? mouse hover on anchor tag does not display pointer cursor. Behavior observed on Chrome, works fine on IE 9? This is also interesting but does not show the cursor change... How to use chrome web inspector to view hover code Are there any settings to apply to prevent that? THX