How do I detect if the browser supports HTML5 data attribute using Modernizr?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Test whether an element has the property dataset.

Modernizr.addTest('data', function () {
    var elem = document.createElement('div');
    return !!elem.dataset;
});
link|improve this answer
1  
Why use two exclamation points? – Diogo Jun 4 '11 at 21:34
2  
!! just ensures that the value returned is either true or false, rather than, say, undefined which evaluates to false or function(){/* code */}, which evaluates to true when treated as a boolean. – cmptrgeekken Jun 4 '11 at 22:05
1  
Yep. In an unsupporting browser elem.dataset = undefined. !undefined = true. !true = false. So !!elem.dataset returns false in an unsupported browser. In a supported one it returns a DOMStringMap, which is a not a falsy value. ! that = false, !false = true. – Rich Bradshaw Jun 4 '11 at 23:08
@Rich How do you put this into use in if statement? In other words I want to perform an action if this is true and another if it is false. Do you do that inside or outside the .addTest function? – ryanve Aug 13 '11 at 16:33
1  
Run that first, then it will make the variable Modernizr.data, which is a boolean. It also adds the class "data" to the html element, for CSS, if needed. – Rich Bradshaw Aug 13 '11 at 20:19
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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