Jump to content

picatree

Members
  • Posts

    1
  • Joined

  • Last visited

picatree's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Why is javascript not working with my form? I can not return any form element with document.getelementsByID or document.getelmentsByname. I wanted to do a simple what is your name put a user's name and display it back. Also I wanted to position the form elements wherever I want. How do I accomplish all that? Any fix or suggestion on how I should have done this? Thank you in advance Frank <!DOCTYPE html> <HTML> <HEAD> <TITLE>First Step </TITLE> <STYLE> Html, Body { margin:10; padding:0; } #Label1 { position: absolute; cursor: default; Left: 124px; top: 7px; z-index:-1; } #Label2 { position: absolute; cursor: default; Left: 124px; top: 69px; z-index:-1; } #Label3 { position: absolute; cursor: default; Left: 129px; top: 220px; z-index:-1; } #Textbox1 { position: absolute; Left: 124px; top: 100px; z-index:-1; } #Textbox2 { position: absolute; Left: 2px; top: 50px; z-index:-1; } #CommandButton1 { position: absolute; Left: 2px; top: 10px; height: 23px; width: 595px; z-index:-1; } </STYLE> <SCRIPT LANGUAGE="JavaScript"><!-- function OKClick() { //var x="By Frank" this works fine if i add it to Hello world. var x = document.getElementByname("Textbox1"); This doesn't work by ID or by Name it will put elements out of line. alert("Hello "+x ) } // Do not Add or Remove anything past this line! //-------------------------------------------------------------------------- // --> </script> <BODY> </BODY> <FORM ID= "FirstStep" NAME="FirstStep" METHOD=POST ACTION="javascript:void(0)"> <DIV ID="Label1"> <Label for="Label1">Almost there! Please complete this form and click the button below to gain instant access.</label> </DIV> <DIV ID="Label2"> <Label for="Label2">Enter your email address and click the button below to get Started.</label> </DIV> <DIV ID="Label3"> <Label for="Label3">I hate SPAM and promise to keep your email address safe.</label> </DIV> <DIV ID="Textbox1"> <INPUT TYPE="TEXT" NAME="textbox1" VALUE="Name" SIZE=" 39" </DIV> <DIV ID="Textbox2"> <INPUT TYPE="TEXT" NAME="Textbox2" VALUE="Email" SIZE=" 39" </DIV> <DIV ID="CommandButton1"> <h1><INPUT TYPE="button" Onclick= "OKClick() " value = "I'M WILLING TO TAKE ACTION NOW >>" </h1> </DIV> </FORM> </HEAD> </HTML> FirstStep.html
  2. I dont know why my form is not working

×
×
  • Create New...