JavaScript Form Field Validation


/ Published in: JavaScript
Save to your folder(s)

JavaScritp Form Validation Framework to validate form fields on the fly, no programming knowledge required.


Copy this code and paste it in your HTML
  1. Example: property = oForm1.addProperty(
  2. { name:"businessName"
  3. , friendlyName:"Business name"
  4. , required:true
  5. , minimumLength:2
  6. , maximumLength:40
  7. , trim:true
  8. , onerror:myUserDefinedValue1
  9. , onvalidate:myUserDefinedValue2 } );

URL: http://www.clickfind.com.au/javascript-form-validation/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.