Is there a best-practice indication about using setAttribute instead of the dot (.) attribute notation?

e.g.
myObj.setAttribute("class","nameOfClass");
     - and -
myObj.className="nameOfClass";

OR

myObj.setAttribute("id","someID");
     - and -
myObj.id="someID";


etc

Thank you.

link|improve this question

feedback

1 Answer

up vote 17 down vote accepted

You should always use the direct .attribute form (but see the quirksmode link below) if you want programmatic access in JavaScript. It should handle the different types of attributes (think "onload") correctly.

Use getAttribute/setAttribute when you wish to deal with the DOM as it is (e.g. literal text only). Different browsers confuse the two. See Quirks modes: attribute (in)compatibility.

link|improve this answer
2  
YES. Big fat plus one. – Tim Down Oct 12 '10 at 22:01
2  
And another big fat one. Thank you, pst! – Francisc Oct 13 '10 at 6:53
2  
Here's a plus one that's been watching its weight. It's not fat, it's big-boned. – Rocket Feb 2 at 20:06
1  
The quirksmode page doesn't say much about the direct form. I tried a jsperf test and it says it's faster jsperf.com/jquery-data-vs-getattribute/11 . But is it always safe? – djjeck Feb 28 at 9:26
feedback

Your Answer

 
or
required, but never shown

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