Use JavaScript to ensure that all elements of a form are properly filled out before mailing.
I get annoyed when I'm trying to fill in a form and I have to scroll left or right to see what I've typed. This little script puts an end to that. The amazing expanding text box!
The tab key is no longer required to tab between fields. The user can go to the next form field just by pressing the enter key instead of the tab key. Useful with 10-key form input. What a time saver!
Do you ever receive multiple copies of a single form submission? Do your visitors click the submit button over and over, hoping it will hurry up the process? Well, JavaScript can solve your problems! The script will prevent the visitor from submitting the form after the first submission. Basic field validation also included! Great!
Strips the characters from an input string. You can change the characters you want removed from the string by changing one line of code. Very useful!
Replaces single or multiple spaces in a text box entry with plus (+) symbols. Handy if your server's form processing or database management program requires this type of encrypted format.
Use JavaScript to convert entries to sentence caps. Also, this JavaScript prevents jokers from typing in all caps.