Get latest news and Web Designing tutoria

Thursday, 4 June 2015

Validating the HTML form

The only thing left to do is to return to the validate function. After all the other four functions have been executed, the four variables will either be true or false. We only want to send the form if all four variables are true. If they are not then the user has made an error and we need to keep them on the same page. Here's the rest of the code for the validate function:

Javascript code to validate a HTML form


The new part is the IF … ELSE statement. It's uses the AND operator (&&) three times. IF all four variables are true we have this line:
document.frmOne.submit();
You only need the word submit with a pair of round brackets on the end. This is enough to send the form to whatever you have for the ACTION attribute for the FORM tag.
If you don't want to send the form the only thing you need to do is to set the return value to false.

Related Posts:

  • Javascript Functions The scripts we have at the moment are set to run as soon as the page loads in the browser. But they don't have to. A better way is to put the code inside something called a function. A function is just a separate code segmen… Read More
  • Using getElementById in Javascript The document method getElementById is used to manipulate particular HTML elements on your page. As its name suggests, though, the HTML element needs an ID attached to it. As an example, take a look at this segment … Read More
  • Javascript Arrays A normalJavascript variable like var age = 18 holds a single piece of data. An array is a way to hold more than one piece of data under the same name. There's a few ways to set up an array but the simplest looks l… Read More
  • Javascript Dates and Time The first thing you need to do is to create a new Date object: var the_date = new Date(); Note the use of the keyword new. After a space you type the word Date (capital "D"). This is followed by a pair of round brack… Read More
  • Function Arguments in Javascript You can pass values over to your functions. These values are called arguments, and they go between the round brackets of the function. If you have more than one value to pass over, you separated them with commas. Let's look … Read More

0 comments:

Post a Comment