Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

for internal reasons I need to attach some information to some html tag. Example:

<img src="mypic" mycustomvalue="abc">

Can I add safely like that or there is another way?

Thanks

I am currently using HTML 5

<!DOCTYPE html><html lang="en">
share|improve this question
How are you retrieving this attribute? Server side/Client side? – m.edmondson Mar 24 '11 at 13:20
I write it with PHP, i retrive it with javascript client side – yes123 Mar 24 '11 at 13:21
1  
I think you can use data-* where star is your att name. <img src="mypic.jpg" data-value1="lalala" data-value2="mamama" /> – Ivan Ivanić Mar 24 '11 at 13:23

3 Answers

up vote 10 down vote accepted

Yes, you can do that.

Note that the HTML5 standard is to prefix custom attributes with data-:

<img src="mypic" data-mycustomvalue="abc">
share|improve this answer
Could you also use a custom namespace? <img src="mypic" custom:mycustomvalue="abc"> ? – John Bledsoe Mar 24 '11 at 13:24
aww never heard of data-* :) Thanks – yes123 Mar 24 '11 at 13:24
@John Bledsoe - No, not validly. And even if it were valid, the rules around colons in element and attribute names in HTML are so complex that I recommend steering well clear of them. – Alohci Mar 24 '11 at 14:19
@alohci: what?. – yes123 Mar 24 '11 at 15:33
@Alohci - Thanks. I also found this relevant post: stackoverflow.com/questions/581279/… – John Bledsoe Mar 24 '11 at 17:44

Yes, you can set it like that, and retrieve it with :

document.getElementById("txtBox").getAttribute("mycustomvalue");
share|improve this answer

Use getAttribute(), this should allow you to retrieve the value of any attribute.

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.