Returns whether or not a value exists.
isRequired: function( value )
Returns whether or not a value is of a specified data type.
isType: function( value, paramsObj )
Returns whether or not a value is valid email address syntax.
isEmailAddress: function( value )
Returns whether or not a value is a valid email address list.
isEmailAddressList: function( value )
Check if a specified value is a URL.
isUrl: function( value )
Returns wether or not a value length is within a specified range.
isLength: function( value, paramsObj )
Returns wether or not a numeric value is within a specified range.
isRange: function( value, paramsObj )
Returns whether or not a value matches a specified regex expression.
isMatch: function( value, paramsObj )
Returns whether or not a value is a valid American zip code.
isZipCode: function( value )
Returns whether or not a value is a valid Canadian Postal code.
isPostalCode: function( value )
Executes a set of validation rules against one or more web forms, and returns an array of errors found.
execute: function( rulesObj, domElmListObj )
Static function--Returns the instance of the mojo.helper.Validation singleton object.
mojo.helper.Validation.getInstance = function()