Is the user pressing the "Enter" key in the middle of your form causing inadvertent and incomplete form submissions? This script disable the "Enter" key when pressed inside chosen fields of your choice. Moreover, it then advances the cursor to the next field within the form.
This is the North American version of Ken's Country Chooser
It displays two select boxes, one for the country (Canada and United States), and one for the state/provinces.
Simple to install, just copy and paste the JavaScript into the section of your Web page, and insert the twostatements into your form.
FormCheck is a generic script which will check and verify 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.
This is a Web-based wizard that generates a JavaScript form validation code with textfields and a text area. Type the text that will appear next to each textfield, the textfield names, and choose the textfields width and max number of characters. You can also choose which textfields are required, required email, reqiured number, etc. Type in the button label (Enter, Submit, etc.) Then click the "create form" button to generate the code. Use it or add it to your site for free.
Word Filter is a type of form validator. When the user submits some text, the validator will check the text for words that has to be filtered. The words that have to be filtered must be added to the array swear_words_arr. When the user types the text and hits the submit button, if the text contains any word that is present in the array swear_words_arr, the form will not be submitted. The script can be used for validation of swear words etc.
This useful script allows you to target a form's submission to a new customizable window, so the original page does not change once the "submit" button is pressed. Instead, a customizable pop up window is launched containing the destination page.
Use this script to automatically clear the default value of any form's input field when the mouse sets focus on it. This script intelligently distinguishes between default and user-entered text, and clears only the former on mouse focus.
Client side java script is the efficient way to validate the user input in web forms. It gives the response immediately and reduces the server load. But, when there are many forms in the project and when the forms are long, writing the form validations becomes a daunting, repetitive task. Save yourself from coding long validations for your forms. Here is a simple, powerful form validation code. Using this code, you can do the common form validations in a snap.
Use this JavaScript to validate Email addresses on the client-side. To validate an Email address, use the function in the following manner: isEmail(someEmailAddress). The function returns true if the Email is valid, else the function returns false. The isEmail() function does not use regular expressions while the isEmail2() function uses regular expression for validation.