mouse hover on anchor tag does not display pointer cursor. Behavior observed on Chrome, works fine on IE 9?

11,189

Solution 1

Do you have Developer tools open? For some reason cursor will not show as pointer while this tool is open. Close it and try again.

Solution 2

The issue is chrome developer tools as stated by LetsGoRangers

Fix: Press F12 Click on the gear icon (lower right in version 27) Click override (left column) make sure "emulate touch events" is unchecked.

The cursor should appear even with Developer Tools open now.

There have been issues where it will check itself after restarting chrome. You may need to reinstall chrome to fix this.

Share:
11,189
Naga
Author by

Naga

17 years in IT industry, as developer, lead & solution architect, spent most of time in programming with Microsoft technologies ASP.NET, C#, VC++, Win32, MFC, COM, ActiveX. Has worked with many US clients and Asian clients. Over the few years has developed Open Source CMS for publications. I love research specially occult things check my Android App 126 Astrology is developed using ionicframework which is also Open Source And in search of like minds to build a standard with technology edge

Updated on June 09, 2022

Comments

  • Naga
    Naga almost 2 years

    I have a code in my razor view as below. The pointer cursor is not displaying while mouse hover on any of the anchor tag. The same code works fine on IE 9. This issue is observed on Chrome browser.

    Any guess why the below code failed on Chrome Version 25.0.1364.172 m?

    <ul id="menu" class="menu">
       <li><a href="#" style="cursor: pointer;">Top 10 Headlines</a>
       </li>
        <li><a href="#">Related Content</a>
       </li>
    </ul>