I have noticed that the "rel" attribute is not used at all by browsers, does this make it an ideal place to store additional information for javascript (eg a delete ajax request could read the id from rel)

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

I have noticed that the "rel" attribute is not used at all by browsers

You noticed wrong. Browsers do make use of it (e.g. some browsers have a keyboard shortcut to go to the next page and can use the rel attribute to determine that that is). Search engines also make use of it (e.g. nofollow).

does this make it an ideal place to store additional information for javascript

No. Attributes have specified purposes. Don't assume that they aren't going to be used for that.

link|improve this answer
w3schools.com/TAGS/att_a_rel.asp "Browsers do not use this attribute in any way." – Hailwood Mar 11 '11 at 12:14
But search engines do... – dianovich Mar 11 '11 at 12:16
Also, it seems pretty dangerous to assume that no browser will come around that does make good use of a currently large-unused-by-interactive-UAs attribute... – Michael Kjörling Mar 11 '11 at 12:18
2  
@Hailwood: relying on w3schools is not a good idea. – bažmegakapa Mar 11 '11 at 12:20
4  
W3Schools is … err … wrong there. Again. They do suck. w3fools.com – Quentin Mar 11 '11 at 13:30
show 1 more comment
feedback

I'm assuming you are looking for a way to store custom data you can use in javascript. I that case:

Storing custom data can be done using data- attributes (see here).

<a href="somelink.html" data-id="5">Link 5</a>

Alternatively/additionally you could use jQuery Metadata

link|improve this answer
Worth noting that this is only valid in HTML 5 , it is however the best choice for attaching data to any element , in my opinion – Blowsie Mar 11 '11 at 12:27
Using data- is 'safe' to use before HTML 5 isn't it? – Ropstah Mar 11 '11 at 12:32
Yes, you won't have compatibility issues, however it will cause your pages to not validate under the w3 validation service (if you're not using the html5 doctype that is). – Matthew Dec 23 '11 at 17:14
feedback

You could just create your own custom attributes but make sure that you name it currently as to not conflict with other js libraries that you may use.

link|improve this answer
feedback

The problem you'll have is that search engines do make use of the rel attribute. While SEO is not my focus, we often have SEO firms telling us to stick a rel in here and a rel in there... usually rel="nofollow" to prevent giving weight to certain external links.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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