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

What is the difference between the id and name attributes? They both seem to serve the same purpose of providing an identifier.

I would like to know (specifically with regards to ASP.net web forms) whether or not using both is necessary or encouraged for any reasons.

Thanks guys!

share|improve this question
2  
There is very good thread on this topic at stackoverflow.com/questions/7470268/html-input-name-vs-id – Richard Logwood Jan 24 '12 at 0:08

8 Answers

up vote 101 down vote accepted

The name is used when sending data in a form submission. Different controls respond differently. For example, you may have several radio buttons with different ids, but the same name. When submitted, there is just the one value in the response - the radio button you selected.

Of course, there's more to it than that, but it will definitely get you thinking in the right direction.

share|improve this answer
I am also seeking the answer for this, but hard to understand from your post.. – NoviceToDotNet Mar 31 at 6:55
would you please describe a littel more on it..When submitted, there is just the one value in the response - the radio button you selected. – NoviceToDotNet Mar 31 at 6:56

Use name attributes for form controls (such as <input> and <select>), as that's the identifier used in the POST or GET call that happens on form submission.

Use id attributes whenever you need to address a particular HTML element with CSS, JavaScript or a fragment identifier. It's possible to look up elements by name, too, but it's more efficient to look them up by ID.

share|improve this answer
2  
AFAIK, the <form>s name attribute is not sent with the data. – nickf Sep 9 '09 at 5:13

Id is used to identify the HTML element through the Document Object Model (via Javascript or styled with CSS). Id is expected to be unique within the page.

Name corresponds to the form element and identifies what is posted back to the server.

share|improve this answer

See this http://mindprod.com/jgloss/htmlforms.html#IDVSNAME

What’s the difference? The short answer is, use both and don’t worry about it. But if you want to understand this goofiness, here’s the skinny:

name= is for use as a target like this: <a name="XXX"></a> for links like this: <a href="#XXX".

name= is also used to label the fields in the message send to a server with an HTTP (HyperText Transfer Protocol) GET or POST when you hit submit in a form.

id= labels the fields for use by JavaScript and Java DOM (Document Object Model). The names in name= must be unique within a form. The names in id= must be unique within the entire document.

Sometimes the the name= and id= names will differ, because the server is expecting the same name from various forms in the same document or various radio buttons in the same form as in the example above. The id= must be unique; the name= must not be.

JavaScript needed unique names, but there were too many documents already out here without unique name= names, so the W3 people invented the id tag that was required to be unique. Unfortunately older browsers did not understand it. So you need both naming schemes in your forms.

share|improve this answer

The way I think about it and use it is simple:

id is used for CSS and JavaScript/jQuery (has to be unique in a page)

name is used for form handling in PHP when a form is submitted via HTML (has to be unique in a form)

share|improve this answer

ID tag - used by CSS, define a unique instance of a div, span or other elements. Appears within the Javascript DOM model, allowing you to access them with various function calls.

Name tag for fields - This is unique per form -- unless you are doing an array which you want to pass to PHP/server-side processing. You can access it via Javascript by name, but I think that it does not appear as a node in the DOM or some restrictions may apply (you cannot use .innerHTML, for example, if I recall correctly).

share|improve this answer
5  
radio buttons must share the same name to behave properly - it's not unique per form. – nickf Sep 9 '09 at 5:14
My mistake. Though to clarify, for text inputs, text areas and etc, name tags are used to identify them. Not necessary unique. – Extrakun Sep 9 '09 at 5:23

name= is deprecated for link targets, and invalid in HTML5. It no longer works at least in latest Firefox (v13). Change <a name="hello"> to <a id="hello">

The target does not need to be an <a> tag, it can be <p id="hello"> or <h2 id="hello"> etc. which is often cleaner code.

As other posts say clearly, name= is still used (needed) in forms. It is also still used in META tags.

share|improve this answer

This link has answers to the same basic question, but basically, id is used for scripting identification and name is for server-side.

http://www.velocityreviews.com/forums/t115115-id-vs-name-attribute-for-html-controls.html

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.