Get latest news and Web Designing tutoria

Thursday, 4 June 2015

Checkboxes

The final function we need is for the checkbox. You can have 1 or more checkboxes on a form. We only have 1, so checking it is fairly straightforward. If you have more than checkbox, though, you do the testing in exactly the same way as for radio buttons.
But here's the code for the checkCheckbox function:
Javascript code to test a checkbox


The IF statement just tests the terms HTML element (a checkbox) for a value of checked. If it has been checked then we can return a value of true, as the user has agreed to the terms and conditions. If the checkbox has not been checked, the value will be "undefined" and we can return a value of false.
Test it out. Leave the check box unchecked. Click the submit button and you'll see this:

checkbox error message

When you check the box the error message should disappear.

Related Posts:

  • Javascript Form Validation - the email function We'll start with the function that checks the email address text box. We'll only check if the text box has had anything typed into it. Checking for a correct email address is notoriously difficult, so we're just trying to k… Read More
  • Radio Buttons Checking radio buttons on a form is a little trickier. You have to loop through each button, testing for a value of checked, which means it was selected. Only one radio button in a group can be selected, so if you find… Read More
  • Dropdown Lists The code to check the dropdown list is more or less the same as for radio buttons. Here it is: The only difference is in the IF Statement. Between the round brackets we have the following: document.frmOne.hear[i].select… Read More
  • Checkboxes The final function we need is for the checkbox. You can have 1 or more checkboxes on a form. We only have 1, so checking it is fairly straightforward. If you have more than checkbox, though, you do the testing in exactly the… 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

0 comments:

Post a Comment