How to check with JavaScript, if cursor:none is supported, or not?

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

Simply create an element, set the property, and check whether the property is still existent.

function isCursorNoneSupported() {
    var a = document.createElement("a");
    a.style.cursor = "none";
    return a.style.cursor === 'none';
}

if ( isCursorNoneSupported() ) {
    alert("cursor:none is supported!");
} else {
    alert("cursor:none is not supported :(");
}

To check which browsers support cursor:none, have a look at: cursor Browser compatibility

link|improve this answer
great answer, voted up but why === and not == – refhat Jan 7 at 19:17
1  
@refhat === is an identity operator. In this case, it doesn't matter whether you're using == or ===, because both objects are a string. For more details on === vs ==, see JavaScript === vs == : Does it matter which “equal” operator I use? – Rob W Jan 7 at 20:28
feedback

Your Answer

 
or
required, but never shown

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