Tagged Questions

The HTML5 spec contains a "Embedding custom non-visible data with the data-* attributes" chapter that states the folowing: A custom data attribute is an attribute in no namespace whose name starts with the string "data-", has at least one character after the hyphen, is XML-compatible, and ...

learn more… | top users | synonyms

34
votes
3answers
9k views

Do HTML5 custom data attributes “work” in IE 6?

Custom data attributes: http://dev.w3.org/html5/spec/Overview.html#embedding-custom-non-visible-data When I say “work”, I mean, if I’ve got HTML like this: <div id="geoff" data-geoff="geoff de ...
33
votes
6answers
5k views

How to use HTML-5 data-* attributes in ASP.NET MVC

I am trying to use HTML5 data- attributes in my ASP.NET MVC 1 project. (I am a C# and ASP.NET MVC newbie.) <%= Html.ActionLink("« Previous", "Search", new { keyword = Model.Keyword, page = ...
20
votes
1answer
5k views

Jquery selectors on custom data attributes on HTML5

I would like to know what selectors i have available for this data attributes that comes with HTML5. Taking this piece of HTML as sample: <ul data-group="Companies"> <li ...
15
votes
2answers
726 views

Is there any problem with using HTML5's “data-*” attributes for older browsers?

I want to associate some custom data with some HTML nodes. I was going to use the new HTML5 style 'data-*' attributes. e.g.: <tr class="foo" data-typeid="7">…, and then I was going to select ...
8
votes
1answer
4k views

jQuery how to find an element based on a data-attribute value?

I've got the following scenario: var el = 'li'; and there are 5 <li>'s on the page each with a data-slide=number attribute (number being 1,2,3,4,5 respectively). I now need to find the ...
8
votes
1answer
3k views

Selecting element by data attribute

Is there an easy and straight-forward method to select elements based on their data attribute? For example, select all anchors that has data attribute named customerID which has value of 22. I am ...
7
votes
5answers
11k views

HTML 5 Browser Compatibility Chart - HTML 5 in Old Browsers?

I have just started considering using the HTML 5 api for a Rails/JQuery project, so I can use that great data- attribute to store values. I am worried though about browser compatibility issues. I ...
5
votes
3answers
92 views

Remove multiple html5 data-attributes with jquery

So jquery api says the following: Removing data from jQuery's internal .data() cache does not effect any HTML5 data- attributes in a document; use .removeAttr() to remove those. I have no ...
5
votes
1answer
1k views

Are HTML data attributes safe for older browsers e.g. IE 6? [closed]

Possible Duplicate: Do HTML5 custom data attributes “work” in IE 6? Is it safe to use HTML data attributes. For example if a user uses IE6 as browser, will I still be able to use the ...
4
votes
1answer
696 views

jQuery 1.4.4: How to find an element based on its data-attribute value?

I imagine this should be a pretty trivial task but using Firefox for Mac, 3.6.12 the following does not work: // assign data attributes $('.gallery li').each(function(i) { ...
3
votes
1answer
146 views

jquery datepicker - override options from data-attribute

I'm using this markup <label> Date <input type="text" data-datepicker="{maxDate: '+1d'}" /></label> <label> Another date <input type="text" data-datepicker="" ...
3
votes
2answers
240 views

Does using custom data attributes produce browser compatibility issues?

I have to choose between custom data tags or ids. I would like to choose custom data tags, but I want to be sure that they do not cause browser compatibility issues for the most widely used browsers ...
3
votes
2answers
100 views

Retrieve all data-* attributes from an element [closed]

Possible Duplicate: Get list of data-* attributes using javascript / jQuery How would you go about retrieving all the data attributes from an element, and throw them into an array? For ...
3
votes
2answers
121 views

Is using .data() to retrieve the value of data-* attributes a good idea?

In my project I am currently using some custom data-* attributes in my HTML to convey some extra data that will be used by jQuery. I found the .data() method and noticed that if I have a data-* ...
2
votes
2answers
31 views

What happens if I don't preface data attributes with “data-”?

I frequently end up storing data in DOM elements and make heavy use of custom data attributes and JQuery. I know the HTML5 spec says data attributes should have the data- prefix, but as far as I can ...
2
votes
3answers
125 views

Does element.attributes contain custom data-attributes?

I was wondering if there is browser consistency what elements are stored in the attributes array. Is all "data-xxx" attributes found through "$('#elm')[0].attributes"? For example does the ...
2
votes
1answer
539 views

Custom HTML attribute requires a custom helper?

I'm trying to create a form with some custom data attributes on the inputs: <input type="text" data-family="Dinosaurs"> This seemed like a nice clean way to have easy front-end access (haha!) ...
2
votes
5answers
372 views

Custom data in XHTML 1.0 Strict

I use some custom attributes in my html, for jquery stuff. I saw there are data-XYZ attributes in HTML5, but I need to be xhtml 1.0 strict. What other options do I have?
2
votes
1answer
246 views

Rails 3 UJS and XHTML

I have a simple question about how Rails 3 works with XHTML doctypes. Since Rails 3 uses UJS for its ajax calls (and even normal calls such as delete calls) and does so by use of HTML5 data ...
2
votes
2answers
368 views

How can I use HTML5 Data Attributes in XHTML?

Does anyone know how the HTML5 data attributes (data-*) can be implemented in XHTML without rendering the markup as invalid? Is there a custom namespacing hack that would allow this on existing HTML ...
1
vote
3answers
42 views

filtering data based on a custom data attribute using jquery

I was wondering if someone could help with with some jquery code for doing the following. I have a drop down select list input that i would like to filter a list of checkboxes. Here's what my html ...
1
vote
2answers
77 views

Use custom regular expressions to validate form

I would like to validate the form using my custom data attributes but not sure how this is done. I also want to display the error messages in the data attributes if required. I am looking for the ...
1
vote
1answer
72 views

Are there any downsides to using data attribute to edit content with javascript?

I am developing a simple web app and I need to update the displayed data after certain events or conditions. This data is scattered in many different places and within completely separate markup ...
1
vote
2answers
103 views

How to select elements with jQuery that have a certain value in a data attribute array

is there a way in jQuery to select elements that have a certain value in a data attribute array? Consider this snippet of html: <li id="person1" data-city="Boston, New York, San Fransisco"> ...
1
vote
1answer
101 views

Does Firefox 3 support Rails3 UJS, despite not supporting HTML5 data-* attributes?

Am I missing something or is Rails3 UJS incompatible with Firefox 3? AFAIK, all the previous-gen browsers didn't support the HTML5 data- attributes, so does this mean all the Rails3-style UJS code ...
0
votes
1answer
62 views

Creating data-attributes on table rows with jqGrid

I'm trying to read up on the jQuery plugin jqGrid but I'm running short when skimming through the documentation and demos. What I want to accomplish is to use some parts of my JSON data to display in ...
0
votes
5answers
51 views

jQuery: find a div containing part of the URL and add ID to div

I have a list of div's in my code which have a custom data-attribute assigned to them which is "data-for". What I need to do is find the div which has a data-for attribute that matches part of the ...
0
votes
1answer
39 views

How to select elements with jQuery that have a certain value in a data attribute array

is there a way in jQuery to select elements that have a certain value in a data attribute array? Consider this snippet of html: <li id="person1" data-city="Boston, New York, San Fransisco"> ...
0
votes
1answer
129 views

HTML's data attribute undefined in jQuery

I'm using the following code to access an HTML data attribute: HTML <p class="add-favorites-to-list"> <a href="#" data-baskettype="order"><img src="/style/icons/cart_add.png"> ...
0
votes
0answers
136 views

How to put data attributes in TR tags using ASP.net GridView?

I have an ASP.net page with a GridView. The GridView has a number of rows, each with an associated ID number. I would like to make ASP.net output something like <tr ...