Mark Forums Read
  #1  
Old 03-31-2010, 05:54 AM
JavaScriptBank JavaScriptBank is offline
Senior Member
 
Join Date: Sep 2009
Posts: 130
JavaScriptBank is on a distinguished road
Default Extreme Form Field Validator

Handle and precess all of your form field validations using just one script. This JavaScript can verify numeric strings; monitor the detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup

Step 1: Place CSS below in your HEAD section
CSS
Code:
<style> #errordiv { border: 1px solid red; background-color: #FFAFAF; display: none; width: 50%; margin: 5px; padding: 5px; } .required { background-color: #CC4444; } .required:focus { background-color: #fff; border: 1px solid #f00; } .checkit { background-color: #E0E5EF; } </style>
Step 2: Place JavaScript below in your HEAD section
JavaScript
Code:
<script type="text/javascript" src="chkform.js"></script><script type="text/javascript"> function configureValidation(f,alerttype){ f.firstname.isAlphaNumeric = true; f.lastname.isAlphaNumeric = true; f.email.isEmail = true; f.phone.isPhoneNumber = true; f.birthday.isDate = true; f.postalcode.isEmpty = true; f.password1.isLengthBetween = [4,255]; f.password2.isMatch = f.password1.value; f.comments.optional = true; var preCheck = (!f.infohtml.checked && !f.infocss.checked && !f.infojs.checked) ? errormsg[0] : null; return validateForm(f, preCheck, 'required', alerttype); } </script>
Step 3: Copy & Paste HTML code below in your BODY section
HTML
Code:
<div> <form action="#" method="post" onsubmit="return configureValidation(this,3)" onreset="confirm(errormsg[99])"> <table class="formtable"> <tr> <td>First Name:</td> <td><input class="checkit" type="text" id="First name" name="firstname" value="" class="text"></td> </tr> <tr> <td>Last Name:</td> <td><input class="checkit" type="text" id="Last name" name="lastname" value="" class="text"></td> </tr> <tr> <td>Email:</td> <td><input class="checkit" type="text" id="Email" name="email" value="" class="text"></td> </tr> <tr> <td>Email Preferred:</td> <td><select name="emailpreferred"> <option value="text">Text</option> <option value="html">HTML</option> <option value="flash">Flash</option> </select></td> </tr> <tr> <td>Phone: (US only) </td> <td><input class="checkit" type="text" id="Phone" name="phone" value="000-000-0000" class="text"></td> </tr> <tr> <td>Birthday:</td> <td><input class="checkit" type="text" id="Birthday" name="birthday" value="mm-dd-yyyy" class="text"></td> </tr> <tr> <td>Gender:</td> <td>Male:<input type="radio" name="gender" value="male" class="radio" checked="checked"> Female:<input type="radio" name="gender" value="female" class="radio"></td> </tr> <tr> <td>Password:</td> <td><input class="checkit" onKeyPress="checkCapsLock( event )" id="Password" type="password" name="password1" value="" class="text"></td> </tr> <tr> <td>Re-Enter:</td> <td><input class="checkit" onKeyPress="checkCapsLock( event )" id="Password again" type="password" name="password2" value="" class="text"></td> </tr> <tr> <td>Postal Code</td> <td><input class="checkit" name="postalcode" type="text" id="Postal code" onKeyPress="javascript:checkNumber(this);" onKeyUp="javascript:checkNumber(this);"></td> </tr> <tr> <td colspan="2">Select one or more of the following:</td> </tr> <tr> <td colspan="2">HTML:<input type="checkbox" name="infohtml" value="true" class="checkbox"> CSS:<input type="checkbox" name="infocss" value="true" class="checkbox"> javascript:<input type="checkbox" name="infojs" value="true" class="checkbox"></td> </tr> <tr> <td>Comments:</td> <td><textarea id="Comment" name="comments" class="text" cols="20" rows="4"></textarea></td> </tr> </table> <div id="errordiv"> </div> <div> <input type="submit" name="submit" value="Submit" class="button"> <input type="reset" name="reset" value="Reset" class="button"></td> </form> </div>
Step 4: must download files below
Files
chkform.js






Reply With Quote
 #Add to Ads's Reputation  
OldSponsored Ads
Ads AdsPromoter is online
Member
 
Join Date: LongTime
Posts: 1100
Ads is on a distinguished road
Default New Sponsored Ads



This message will go away once you are registered. Also, by registering, you will have access to all post topics, communicate privately with other members (PM), respond to polls, upload graphics, and access other special features! Registration is fast, simple and absolutely free so please Click Here to join our Web Hosting community today!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT. The time now is 05:12 PM.


Powered by vBulletin Version 3.6.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
SEO by vBSEO 2.4.0