PHP Classes

File: public/asset/vendor/jquery-validation/src/additional/strippedminlength.js

Recommend this page to a friend!
  Classes of fathurrahman   mnTemplate   public/asset/vendor/jquery-validation/src/additional/strippedminlength.js   Download  
File: public/asset/vendor/jquery-validation/src/additional/strippedminlength.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: mnTemplate
Route HTTP requests to callback functions
Author: By
Last change:
Date: 1 year ago
Size: 267 bytes
 

Contents

Class file image Download
// TODO check if value starts with <, otherwise don't try stripping anything $.validator.addMethod( "strippedminlength", function( value, element, param ) { return $( value ).text().length >= param; }, $.validator.format( "Please enter at least {0} characters" ) );