Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am often needing to store little pieces of reference in a page element, most of the time a <div>. I couldn't find too much documentation on how valid it would be to create my own attributes. What do you suggest is the most valid way of doing this or can I even do this? If so, can I just use jQuery's attr() call to get the reference?

example : <div class="sample" dataref="Sample Data Reference"></div>

share|improve this question
Seems like a silly question now... thanks for the help! – Tim Joyce Sep 28 '11 at 11:37

3 Answers

up vote 5 down vote accepted

Use HTML5 data attributes

See: http://api.jquery.com/data/

E.g.

<div class="sample" data-ref="some string" />

Then:

$('.sample').data('ref');
share|improve this answer

Use jQuery data functionality. The data will not show in DOM, but you will able to set and access it fast. Documentation:

http://api.jquery.com/jQuery.data/

Example:

// set value
$.data(element, key, value);

// get value
var value = $.data(element, key); 
share|improve this answer

I feel you can use any word other than "id" and "class" attributes to keep your data.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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