Let's assume that we have simple jQuery code like the following:

var $document = $(document);
$document.ready(function() {
    var $test = $("#test");
    $document.keydown(function(e) {
        e.shiftKey && $test.css("cursor", "pointer");
    });
});

The problem is that WebKit does not change the #test block mouse cursor if the mouse pointer is moved over the #test block, and the Shift key is pressed then. But as soon as you move the cursor, Chrome and Safari change the cursor style to pointer - exactly as it's expected but without mouse move. This bug (?) is not relevant to Firefox, and I didn't check it under Internet Explorer and Opera... You can also see it live.

So, did anyone have experience with the same trouble? Perhaps, is there a workaround for that?

Thanks in advance.

link|improve this question

Verified in Chrome 7.0.517.44. Have certainly noticed it before and it is irritating. – Orbling Nov 30 '10 at 12:02
feedback

2 Answers

up vote 3 down vote accepted

This is a well known bug in then webkit engine, and there is no real workaround for it.

link|improve this answer
Got a link to a bug entry on this? Couldn't find one and I'd like to star it. – Jonatan Littke Feb 28 '11 at 18:32
1  
Search for "webkit cursor change bug" and similar, you'll find plenty. One of them is here: code.google.com/p/chromium/issues/detail?id=26723 – Martin Jespersen Feb 28 '11 at 19:15
feedback

I had this problem using Chromium 11.0.696.65. I was able to solve it with a little delayed JavaScript.

I was trying to make an electronic sign consisting of a large LCD monitor driven by a small diskless industrial computer running Chromium on Ubuntu. On start up, it runs something like:

chromium-browser --kiosk 'http://server:4662/1920x1080/status.html?id=42'

The downloaded page has an XHR polling loop which receives a JavaScript object literal whenever anything changes relating to id=42, at which time, it updates the display appropriately. There is CSS specifying all elements should have a blank mouse pointer.

Problem was, Chrome's request-in-progress mouse pointer was left sitting on the screen. It disappeared as soon as a I moved the mouse. However, the real sign won't have a mouse attached, much less a user to move it.

I added the following script:

function $(id) {return document.getElementById(id);}

function onLoad()
{
    window.setTimeout(hideCursor, 1000);

    function hideCursor() {
        $('content').style.cursor = 'url(/blankCursor.gif),auto';
    }
}

window.onload = onLoad;

Now, the annoying cursor shows up briefly on startup, but vanishes in a second. Then the sign runs cursorless until the next startup (days or weeks).

BTW, the ,auto appears to be another Chromium bug. I found if I just put url(/blankCursor.gif), it won't honor the declaration.

link|improve this answer
Hi, George. Thank you the reply. Google Chrome Canary Build 13.x.x.x seems to have this issue eliminated already. – Lyubomyr Shaydariv May 12 '11 at 16:33
feedback

Your Answer

 
or
required, but never shown

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