Reputation: 70552
I've got an ASP.NET site running locally on my XP system using IIS Express. There is a live version of the site running on a Windows server.
In the web pages, often the Javascript will reference a form on the page using the style document.formName
, where formName
is the name of the form. As far as I know, this is a cross-browser method, along with document.forms.formName
and document.forms[0]
and so forth.
On my local development site, the reference document.frm1
(I know, bad naming practice) errors out; it is undefined. On the other hand, document.forms.frm1
works fine. Strangely, this doesn't occur on the server, although both pages are identical as far as the code goes. I've double checked with Firebug, and in both IE8 and Firefox 6.
Another weird part: checking with Firebug, document.frm1
is undefined, but document.frmClose
(another form) exists! Huh?!
Anyone experienced this before?
Upvotes: 9
Views: 25356
Reputation: 11
The best solution for this is below:
Just add a name property in form tag
If you are using below code
<form id="form1"></form>
<script>
var form = document.form1; //getting undefined error here
</script>
What you need to perform here is:
add "name" property in form tag like below
<form id="form1" name="form1"></form>
<script>
var form = document.form1; //Now it will work fine and provide the correct value
</script>
Upvotes: 1
Reputation: 2508
To get the name attribute added to your form element you need to add...
<system.web>
<pages controlRenderingCompatibilityVersion="3.5" /> <!-- http://www.asp.net/whitepapers/aspnet4/breaking-changes -->
</system.web>
...to your web.config
Upvotes: 8
Reputation: 50592
EDIT 1
I did some experimentation, and found that the id
property is used for document.forms
, whereas the name
property seems to be used for document.formName
Original Answer
Ensure that your javascript is not executing before DOM is ready. One way to help is to put your javascript at the bottom of the page, or if you're using a framework be sure to wrap the code in a ready
-type function:
jQuery: http://api.jquery.com/ready/
Mootools: http://mootools.net/docs/core/Utilities/DomReady
Vanilla javascript:
window.onload = function() {
// Code to be run.
}
The reason that this is inconsistent between servers could be that the local development server loads the page more quickly than the live server does. The timing works out so that you usually don't get the same error in both places - the emphasis is added because if you tried enough times, you would probably be able to reproduce the error in both places.
Upvotes: 13
Reputation: 5181
I recommend not using the name attribute for JavaScript identification purposes. Instead, give the element an id and use
document.getElementById("elementId");
e.g.
<form id="form1"></form>
<script>
var form = document.getElementById("form1");
</script>
Upvotes: 3