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

When I typed this apparently innocent snippet of code:

values.name

gedit highlighted name as a keyword. However, name is not listed by the pages linked to by an answer to a question about reserved keywords. I also did a couple trivial tests in SpiderMonkey, but name seemed to act like an ordinary identifier.

A Google search didn't tell me much either. However, I did find a page listing name in "Other JavaScript Keywords". My guess is that name is a function or a member of some DOM element and does not intrude on the namespace.

Is name really a keyword in JavaScript? If so, what does it do?

share|improve this question
name is (was) used as an attribute of the a element, so it could occur in DOM code. Maybe this is the reason your editor is highlighting it. – Thomas Apr 18 '10 at 20:05

2 Answers

up vote 5 down vote accepted

Its not a javascript reserved word, its an html attribute. Any DOM element can have a name. Looks like your syntax editor will still highlight it.

share|improve this answer

(I know this was asked 2 years ago but, ...) This happened to me also, for example this below would not work.

name = document.getElementById('nombre');
//something else
name.className = 'thinking';

Instead I changed it to

username = document.getElementById('nombre');
//something else
username.className = 'thinking';

and it did work! Yeah, alright that's all, but it's something I find maybe quite interesting, also because of the 'name' attribute of the 'a' tag. Something to watch out for.

share|improve this answer
Perhaps if you did it inside a function and said var name, it would work. My guess is that name here is referring to window.name. I had a similar problem one time with status in Safari. – Joey Adams Jan 2 at 23:38

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.