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

Does it depend on the platform you are using, or is there a common convention that most developers suggest/follow?

There are several options:

  1. id="someIdentifier"
  2. id="some-identifier"
  3. id="some_identifier"

I was thinking 1 and 3 make the most sense because they play nicer with Javascript.

Option 1 looks pretty consistent with javascript code.

Option 2 looks more like html5-like attributes and other things in html.

Option 3 looks pretty consistent with ruby code and is still a valid identifier inside of Javascript

Is there a right answer to this?

share|improve this question

1 Answer

up vote 10 down vote accepted

I use underscores all the time, due to hyphens messing up the syntax highlighting of my text editor (Gedit). Yes, I'm that anal.

As for your question, I don't really think there is a standard. I've seen all these conventions used all over the place. Use the one that you think is best - the one that looks nicest/easiest to read for you, as well as easiest to type because you'll be using a lot of them! For example, if you've got your underscore key on the underside of the keyboard (unlikely, but entirely possible), then stick to hyphens. If you see my point. Just go with what is best for yourself; all 3 of these conventions are easily readable. If you're going to be using a lot of long identifiers, I'd recommend the camel case (first) convention - it saves space and looks neater.

Update 2012

I've changed how I program over time. I now use camel case (thisIsASelector) instead of hyphens now; I find the latter rather ugly. Use whatever you prefer, which may easily change over time.

Update 2013

It looks like I like to mix things up yearly... After switching to Sublime Text and using Bootstrap for a while, I've gone back to dashes. To me now they look a lot cleaner than underscores or camelCase. My original point still stands, though: there isn't a standard.

share|improve this answer
1  
+1 for continuous update! – Julien Poulin May 17 at 9:58

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.