up vote 1 down vote favorite
1
share [g+] share [fb]

<div id="example-value"> or <div id="example_value">?

This site and Twitter use the first style. Facebook and Vimeo - the second.

Which one do you use and why?

link|improve this question

feedback

7 Answers

up vote 1 down vote accepted

It really comes down to preference, but what will sway you in a particular direction might be the editor you code with. For instance, the auto-complete feature of TextMate stops at a hyphen, but sees words separated by an underscore as a single word. So class names and ids with the_post work better than the-post when using its auto-complete feature (Esc).

link|improve this answer
you're right but it will seem much messier in that surrounding "html jungle" – Kamil Tomšík Jan 25 '11 at 10:25
feedback

I believe this is entirely up to the programmer. You could use camelCase too if you wanted (but I think that would look awkward.)

I personally prefer the dash, because it is quicker to type on my keyboard. So I would say that you should go with what you are most comfortable with, since both your examples are widely used.

link|improve this answer
1  
this question is similar and verifies this answer stackoverflow.com/questions/70579/… – Matt Smith Nov 8 '09 at 15:48
feedback

Either example is perfectly valid, you can even throw into the mix ":" or "." as separators according to the w3c spec. I personally use "_" if it is a two word name just because of its similarity to space.

link|improve this answer
2  
Yes, you can use colons and periods for Ids, but that's a good way to get the person writing the CSS file to hate you. – Dave Markle Nov 8 '09 at 15:47
1  
A HTML identifier ZZ:ZZ would have to be escaped as ZZ\00003AZZ (CSS2 and above). – McDowell Nov 8 '09 at 16:36
I didn't say it was good practice, I said it was valid. – Myles Nov 8 '09 at 17:19
Sounds like a fun way to make jQuery explode – Mike Robinson Jan 7 '10 at 16:44
feedback

Actually some external frameworks (javascript, php) have difficulties (bugs?) with using the hypen in id names. I use underscore (so does 960grid) and all works great.

link|improve this answer
Which ones? Anyway, code-readability is much more important thing. – Kamil Tomšík Jan 25 '11 at 10:23
feedback

use hyphens - they are more consistent with all the "web things" (seo urls, css pseudo-classes, microformats, xml elements & attributes, http headers, ...)

on the other hand the underlines are much more programming-related (php, ruby, whatever)

camel-case is good choice for class names & all things related to Java or JavaScript (underlines would be better but we want to be as much consistent as possible to achieve maximum readability)

link|improve this answer
feedback

I would suggest underscore mainly for the reason of a javascript side-effect I'm encountering.

If you were to type the code below into your location bar, you would get an error: 'example-value' is undefined. If the div were named with underscores, it would work.

javascript:alert(example-value.currentStyle.hasLayout);
link|improve this answer
2  
That should be document.getElementById("example-value"), which will work fine. – Chuck Jan 7 '10 at 16:41
I am getting a similar problem with ASP.NET MVC when specifying a value for an attribute in the HtmlAttributes parameter of Html helper functions. – Matthijs Wessels Feb 28 '11 at 7:52
feedback

I use the first one (one-two) because its more readable. For images though I prefer the underscore (btn_more.png). Camel Case (oneTwo) is another option.

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.