vote up 1 vote down star
<form name='form1'>
   <select name='sel1'></select>
</form>

<script>
   document.form1.sel1 ...  //access element by it's name attribute, is this standard?
</script>
flag

I think you should format better your code and write valid code : use < and > – Fabien Ménager Oct 1 at 14:42
done. thanks...... – lovespring Oct 1 at 15:19

3 Answers

vote up 4 vote down check

No, it is not specified in DOM Level 2 HTML that an HTMLDocument will gain named forms as direct properties, nor that HTMLFormElement will gain named elements as direct properties.

However the behaviour does stretch back to the very earliest implementation of JavaScript (in Netscape 2) and has been copied by every browser since, so it's one of those “DOM Level 0” features that though not formally recognised by any standards body is certainly a de facto standard.

I still wouldn't recommend using it, because future browsers may introduce new properties on HTMLDocument and HTMLFormElement (as browsers have regularly done in the past especially on HTMLDocument) whose names may clash with your name attributes. This is much, much less likely to happen on the HTMLCollection object used by the document.forms and form.elements properties.

Better still is to put id on anything you want to reference, leave the name off <form> and use the unambiguous document.getElementById().

link|flag
vote up 5 vote down

The right syntax is :

document.forms.form1.elements.sel1

or

document.forms["form1"].elements["sel1"]
link|flag
ok. thanks ...... – lovespring Oct 1 at 15:22
vote up 0 vote down

Why not do document.getElementsByName('sel1')?

There might be other elements with that name in the same document (e.g. multiple forms containing similar sets of controls) – David Dorward 31 mins ago

Thats why I always use id instead of name. I'd recommend using either the forms array or assigning an id to the element for easier retrieval.

link|flag
There might be other elements with that name in the same document (e.g. multiple forms containing similar sets of controls) – David Dorward Oct 1 at 14:46
Point taken – voyager Oct 1 at 15:17
thanks......... – lovespring Oct 1 at 15:21
1  
If you work off name, then you can reuse the JS between different forms, and just switch in a different form object. :) – David Dorward Oct 1 at 15:22

Your Answer

Get an OpenID
or

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