Techie
Techie

Reputation: 45124

Does IE7 support HTML5 data tag?

I'm willing to use data tag as below.

<div data-color="#1337c"></div>

I use jquery to fetch($("div").data("color");) and store($("div").data("color", "red");) as well as manipulate data.

Thanks

Upvotes: 3

Views: 3462

Answers (2)

Luke Madhanga
Luke Madhanga

Reputation: 7457

To my understanding, data attributes are not actually HTML5 features, but rather their use became standardized in HTML5. IE 5.5 (from what I remember) was actually the first browser to support pseudo attributes, but don't quote me on that :v

Upvotes: 0

user166390
user166390

Reputation:

To answer the real question: jQuery.data works as expected in IE7 .. and IE6. (No HTML5 or official "data attribute" support required.)

IE7 will happily keep any attribute supplied in the HTML and expose it as such in the DOM. It doesn't matter if it is called data-foo or foo-data. I believe this is technically against the HTML4 specification, but it is the behavior of every major browser I know.

Do be aware, however, that data("foo") and attr("data-foo") have different semantics.

Upvotes: 10

Related Questions