Form Problem

Please support our JavaScript / DHTML / AJAX advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Reply

Join Date: Jul 2005
Posts: 188
Reputation: aparnesh is an unknown quantity at this point 
Solved Threads: 10
aparnesh's Avatar
aparnesh aparnesh is offline Offline
Junior Poster

Form Problem

 
0
  #1
Oct 31st, 2006
I have a single form in my web page. The Form is defined as

JavaScript / DHTML / AJAX Syntax (Toggle Plain Text)
  1. <FORM action="somepage.asp" method="post" id="Form1" >
  2.  
  3. <INPUT TYPE="Text" Name="txt1" id="txt1" size=5 >
  4.  
  5. </FORM>

In a javascript function, when I am writing

document.Form1.txt1.value = 5 ;

I am getting an error "document.Form1.txt1 is invalid or null".

Instead if I write

document.forms[0].txt1.value = 5 ;

it is working fine. What is wrong with the first statement ? I am using Visual Interdev 6, in which the dropdown list that appears for a object method/properties, is showing Form1 as a property of document and txt1 as a property of Form1 when I press dot(.) after the object name.
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 1,655
Reputation: tgreer is an unknown quantity at this point 
Solved Threads: 35
Team Colleague
tgreer tgreer is offline Offline
Made Her Cry

Re: Form Problem

 
0
  #2
Oct 31st, 2006
You don't have a "name" attribute for your form tag. However, depending on the doctype you're using, you may want to switch to standard DOM methods, such as document.getElementById(), which will alleviate such problems.
Reply With Quote Quick reply to this message  
Join Date: Jul 2005
Posts: 188
Reputation: aparnesh is an unknown quantity at this point 
Solved Threads: 10
aparnesh's Avatar
aparnesh aparnesh is offline Offline
Junior Poster

Re: Form Problem

 
0
  #3
Nov 1st, 2006
Thanks.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the JavaScript / DHTML / AJAX Forum


Views: 1282 | Replies: 2
Thread Tools Search this Thread



Tag cloud for JavaScript / DHTML / AJAX
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC