vote up 26 vote down star
14

Recently I have been reading more and more about people using custom attributes in their HTML tags, mainly for the purpose of embedding some extra bits of data for use in javascript code.

I was hoping to gather some feedback on whether or not using custom attributes is a good practice, and also what some alternatives are.

It seems like it can really simplify both server side and client side code, but it also isn't W3C compliant.

Should we be making use of custom HTML attributes in our web apps? Why or why not?

For those who think custom attributes are a good thing: what are some things to keep in mind when using them?

For those who think custom attributes are bad thing: what alternatives do you use to accomplish something similar?

Update: I'm mostly interested in the reasoning behind the various methods, as well as points as to why one method is better than another. I think we can all come up with 4-5 different ways to accomplish the same thing. (hidden elements, inline scripts, extra classes, parsing info from ids, etc).

Update 2: It seems that the HTML 5 data- attribute feature has a lot of support here (and I tend to agree, it looks like a solid option). So far I haven't seen much in the way of rebuttals for this suggestion. Are there any issues/pitfalls to worry about using this approach? Or is it simply a 'harmless' invalidation of the current W3C specs?

flag

2  
I've been meaning to write a long essay on my stance on this particular issue and I haven't gotten around to it. Perhaps I'll finally sit down and do it... – Paolo Bergantino Jun 14 at 3:59
1  
Please give even a summary of your stance, Paolo: I've been struggling with this topic, given that I'm outputing XHTML. – ChrisW Jun 14 at 4:03
Honestly, my initial stance is that they're not such a bad thing, which can be rather controversial with the purists. I feel like I really need to sit down and evaluate all the options available to properly back this up, though, thus the need to write the long essay. – Paolo Bergantino Jun 14 at 4:35
To do that you may need only some counter-example[s]: of what you're trying to implement, how it's convenient to do that with custom attributes, and why that solution better and not worse than other solutions without custom attributes. – ChrisW Jun 14 at 4:40
1  
Well I finished my "essay", but the result is not really surprising; I'm sticking to data- – Paolo Bergantino Jun 29 at 18:30
show 5 more comments

10 Answers

vote up 22 vote down check

HTML 5 explicitly allows custom attributes that begin with data. So, for example, <p data-date-changed="Jan 24 5:23 p.m.">Hello</p> is valid. Since it's officially supported by a standard, I think this is the best option for custom attributes. And it doesn't require you to overload other attributes with hacks, so your HTML can stay semantic.

link|flag
This is a good approach.. But I doubt it will work of you have to support IE 6 and other old browsers. – roosteronacid Jun 14 at 7:19
1  
I'm pretty sure it does work with older browsers; the attributes are added to the DOM, where you can access them. – ms2ger Jun 14 at 8:04
4  
It works perfectly well with all browsers using the getAttribute() method on an HTMLElement. Plus, as HTML5 dataset support grows you can easily add that in. – ajm Jun 14 at 14:56
This answer is exactly what I was looking for, thanks. – Odd Jul 10 at 4:46
Although HTML5 is NOT standard yet, I agree with ya... – Pablo Cabrera Aug 20 at 12:46
show 2 more comments
vote up 19 vote down

Here's a technique I've been using recently:

<div id="someelement">

    <!-- {
        someRandomData: {a:1,b:2},
        someString: "Foo"
    } -->

    <div>... other regular content...</div>
</div>

The comment-object ties to the parent element (i.e. #someelement).

Here's the parser: http://pastie.org/511358

To get the data for any particular element simply call parseData with a reference to that element passed as the only argument:

var myElem = document.getElementById('someelement');

var data = parseData( myElem );

data.someRandomData.a; // <= Access the object staight away


It can be more succinct than that:

<li id="foo">
    <!--{specialID:245}-->
    ... content ...
</li>

Access it:

parseData( document.getElementById('foo') ).specialID; // <= 245


The only disadvantage of using this is that it cannot be used with self-closing elements (e.g. <img/>), since the comments must be within the element to be considered as that element's data.


EDIT:

Notable benefits of this technique:

  • Easy to implement
  • Does not invalidate HTML/XHTML
  • Easy to use/understand (basic JSON notation)
  • Unobtrusive and semantically cleaner than most alternatives


Here's the parser code (copied from the http://pastie.org/511358 hyperlink above, in case it ever becomes unavailable on pastie.org):

var parseData = (function(){

    var getAllComments = function(context) {

            var ret = [],
                node = context.firstChild;

            if (!node) { return ret; }

            do {
                if (node.nodeType === 8) {
                    ret[ret.length] = node;
                }
                if (node.nodeType === 1) {
                    ret = ret.concat( getAllComments(node) );
                }
            } while( node = node.nextSibling );

            return ret;

        },
        cache = [0],
        expando = 'data' + +new Date(),
        data = function(node) {

            var cacheIndex = node[expando],
                nextCacheIndex = cache.length;

            if(!cacheIndex) {
                cacheIndex = node[expando] = nextCacheIndex;
                cache[cacheIndex] = {};
            }

            return cache[cacheIndex];

        };

    return function(context) {

        context = context || document.documentElement;

        if ( data(context) && data(context).commentJSON ) {
            return data(context).commentJSON;
        }

        var comments = getAllComments(context),
            len = comments.length,
            comment, cData;

        while (len--) {
            comment = comments[len];
            cData = comment.data.replace(/\n|\r\n/g, '');
            if ( /^\s*?\{.+\}\s*?$/.test(cData) ) {
                try {
                    data(comment.parentNode).commentJSON =
                        (new Function('return ' + cData + ';'))();
                } catch(e) {}
            }
        }

        return data(context).commentJSON || true;

    };

})();
link|flag
2  
Interesting take on the matter, this is one I hadn't thought of before. – TM Jun 14 at 15:15
2  
Very interesting... – Paolo Bergantino Jun 14 at 23:40
Out of curiosity, what method do you use for self-closing tags? I generally need to use something like this on <input> elements (to aid in client-side validation rules). What alternative do you take in that situation? – TM Jun 16 at 21:20
I'd probably use a similar technique, instead of the comment data tying to the "parentNode" it could tie to the "previousSibling" of the comment... Then you could have the comment immediately following the <input/> and it would work: <input/><!--{data:123}--> – J-P Jun 16 at 22:15
someone should make this a jquery plugin – SeanDowney Sep 23 at 18:15
vote up 5 vote down

The easiest way to avoid use of custom attributes is to use existing attributes.

use meaningful, relevant class names. For example, do not something like: type='book' and type='cd', to represent books and cds. Classes are much better for representing what something IS.

e.g. class='book'

I have used custom attributes in the past, but honestly, there really isn't a need to for them if you make use of existing attributes in a semantically meaningful way.

To give a more concrete example, let's say you have a site giving links to different kinds of stores. You could use the following:

<a href='wherever.html' id='bookstore12' class='book store'>Molly's books</a>
<a href='whereverelse.html' id='cdstore3' class='cd store'>James' Music</a>

css styling could use classes like:

.store { }
.cd.store { }
.book.store { }

In the above example we see that both are links to stores (as opposed to the other unrelated links on the site) and one is a cd store, and the other is a book store.

link|flag
Good point, but to be fair, "type" is only valid on certain tags, and when it IS a valid attribute, it also has a list of valid values, so you are still not really w3c compliant. – TM Jun 14 at 4:06
1  
my point was you should NOT use the type tag for this. hence the If you were...then you should... I'll edit to make that clearer – Jonathan Fingland Jun 14 at 4:11
I tend to make my "class" attributes with flavors by having some of them appended with some type of "qualifier-". for divs related to layout only, i'd have it's class be "layout-xxx", or for internal divs that surround an important part, like a book or a store, i'd have a content-book, or content-store. then in my JavaScript, i have a function that prepends those things on the tag based on what i'm looking for. it helps keep things clean and organized for me, but requires a certain level of discipline and pre-organization. – Ape-inago Jun 14 at 6:01
1  
@Jonathan the double class thing works great except in cases where the 'values' are not known. For example, if it is some kind of integer id, we can't very well select for every possible case. We are then left to parse the class attribute manually which is definitely workable, but not as clear in the code, and in some cases, could be very slow (if there are a lot of candidate elements to parse). – TM Jun 14 at 6:21
2  
sadly, writing css selectors for two classes at the same time (.a.b notice the missing blank) does not work in IE. it does work in firefox and other browsers though. still, using classes is a great way to embed additional semantic meaning to your markup – knittl Jun 14 at 9:19
show 6 more comments
vote up 4 vote down

Embed the data in the class attribute and use metadata for jQuery.

All the good plug-ins support the metadata plugin(allowing per tag options).

It also allows infinitely complex data/data structures, as well as key-value pairs.

<li class="someclass {some: 'data'} anotherclass">...</li>

OR

<li data="{some:'random', json: 'data'}">...</li>

OR

<li><script type="data">{some:"json",data:true}</script> ...</li>

Then get the data like so:

var data = $('li.someclass').metadata();
if ( data.some && data.some == 'data' )
alert('It Worked!');
link|flag
vote up 1 vote down

I see no problem in using existing XHTML features without breaking anything or extending your namespace. Let's take a look at a small example:

<div id="some_content">
 <p>Hi!</p>
</div>

How to add additional information to some_content without additional attributes? What about adding another tag like the following?

<div id="some_content">
 <div id="some_content_extended" class="hidden"><p>Some alternative content.</p></div>
 <p>Hi!</p>
</div>

It keeps the relation via a well defined id/extension "_extended" of your choice and by its position in the hierarchy. I often use this approach together with jQuery and without actually using Ajax like techniques.

link|flag
2  
The problem with adding nested tags like this is that it tends to create VERY cumbersome and ugly serverside code (JSP/ASP/DTL etc) – TM Jun 14 at 4:13
vote up 0 vote down

Nay. Try something like this instead:

<div id="foo"/>

<script type="text/javascript">
  document.getElementById('foo').myProperty = 'W00 H00! I can add JS properties to DOM nodes without using custom attributes!';
</script>
link|flag
So you prefer to write a lot of extra script tags all over your document for dynamic pages? I'd use manual javascript assignments when the info is being added on the client side, but this problem is mainly about what to render on the server. Also, jQuery.data() is much better than your method. – TM Jun 14 at 4:30
Answer above is a framework-independent, belabored example to demonstrate the functionality. You could easily expand upon the gist of it to make the code quite terse. E.g., <div id="foo"/> <div id="bar"/> <div id="baz"/> <script type="text/javascript"> xtrnlFnc({ foo: 'w00 h00', bar: 'etc.', baz: 3.14159 }); </script> If you're using jQuery (not that you mentioned it in your original question), by all means, use the data method--that's what it's for. If not, passing data between architectural layers is a perfectly valid use of inline script tags. – Anon Jun 14 at 4:53
It's definitely an obvious, valid option. In my opinion it just clutters the code up much more than plenty of other alternatives that do not use custom attributes. And just to be clear, I'm not trying to be combative or rude, I am just trying to coax out some of your reasoning as why you prefer this method. You have provided an alternative but that isn't really what the question is about. – TM Jun 14 at 5:54
1  
I don't think there's a problem with this approach breaking browsers. Microsoft uses this exact mechanism as it's preferred mechanism in ASP.NET pages. (by calling RegisterExpandoAttribute on the server side). The question seems focussed on client and not the server, but on the server side all of these approaches could be (should be?) abstracted. – Adrian Jun 15 at 0:19
2  
The pros to this approach: --It produces valid markup (even under old browsers/specs). --It makes the intent of the data (to be consumed by JS) clear. --It is cohesive to the element without making clever use of other features (such as comments). --It does not require special parsing. From a server-side perspective, you can think of it as being like an RPC. – steamer25 Jun 15 at 15:47
show 2 more comments
vote up 0 vote down

I'm not doing using custom attributes, because I'm outputing XHTML, because I want the data to be machine-readable by 3rd-party software (although, I could extend the XHTML schema if I wanted to).

As an alternative to custom attributes, mostly I'm finding the id and class attributes (e.g. as mentioned in other answers) sufficient.

Also, consider this:

  • If the extra data is to be human-readable as well as machine-readable, then it needs to be encoded using (visible) HTML tags and text instead of as custom attributes.

  • If it doesn't need to be human readable, then perhaps it can be encoded using invisible HTML tags and text.

Some people make an exception: they allow custom attributes, added to the DOM by Javascript on the client side at run-time. They reckon this is OK: because the custom attributes are only added to the DOM at run-time, the HTML contains no custom attributes.

link|flag
vote up 0 vote down

Spec: Create an ASP.NET TextBox control which dynamically auto-formats its text as a number, according to properties "DecimalSeperator" and "ThousandsSeperator", using JavaScript.


One way to transfer these properties from the control to JavaScript is to have the control render out custom properties:

<input type="text" id="" decimalseperator="." thousandsseperator="," />

Custom properties are easily accessible by JavaScript. And whilst a page using elements with custom properties won't validate, the rendering of that page won't be affected.


I only use this approach when I want to associate simple types like strings and integers to HTML elements for use with JavaScript. If I want to make HTML elements easier to identify, I'll make use of the class and id properties.

link|flag
vote up 0 vote down

For complex web apps, I drop custom attributes all over the place.

For more public facing pages I use the "rel" attribute and dump all my data there in JSON and then decode it with MooTools or jQuery:

<a rel="{color:red, awesome:true, food: tacos}">blah</a>.

I'm trying to stick with HTML 5 data attribute lately just to "prepare", but it hasn't come naturally yet.

link|flag
vote up -1 vote down

Custom attributes, in my humble opinion, should not be used as they do not validate. Alternative to that, you can define many classes for a single element like:

<div class='class1 class2 class3'>
    Lorem ipsum
</div>
link|flag
5  
personally, I think this is a terrible example. your classnames define how it looks, not it's purpose. Think about when you want to change all similar divs... you'd have to go and change them all to span-11 or the like. classes should define what it IS. the style sheets should define how those things look – Jonathan Fingland Jun 14 at 4:03
How would you use this method to specify more than just a flag? I tend to agree with your stance, and I don't use custom attributes (although I am considering it). The advantage of having a key/value pair seems quite a bit more handy than simply adding another class. – TM Jun 14 at 4:04
@Jonathan Fingland: If Compass is used, you need not set the class names here. You can just specify them in the .sass file and your markup will be clean. – Alan Haggai Alavi Jun 14 at 4:10
Judging by the example, you've probably never programmed a real web application. – rpflo Jun 14 at 23:37
@rpflo: That is part of another debate and not relevant in Stack Overflow. You are wrong. If there is nothing good that you can comment on, why comment? – Alan Haggai Alavi Jun 15 at 0:46
show 1 more comment

Your Answer

Get an OpenID
or

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