Home
Form effects
Here
|
Categories
Other Sections
Sweet Ads
Compatibility
|
|
FF1+ IE5+ Opr7+
Required field(s) validationNote: Updated Jan 16th, 2003 to version 1.1. Now checks radio buttons as well. Description: One of the most popular form validation tasks is to check that important fields within a form have been filled out by the user. This is a generic script that will do just that, by verifying that mandatory fields are filled in before form submission. If one or more of the required fields are empty, a popup dialog will appear showing the omitted fields. Updated to check radio buttons as well. Demo: All the below fields must be entered: Simply add the below to the <BODY> of your page. It contains the validation script, plus a sample form following it: As shown in the code above, to apply the validation script to your form, you should: 1) Inside the <FORM> tag
itself of your form, input the onSubmit event handler: onsubmit="return formCheck(this);" |