Skip to content
This repository has been archived by the owner on Dec 17, 2019. It is now read-only.

mharen/jquery-max-length-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#jQuery Max Length Plugin ##What? This plugin limits the allowable input length in inputs and textareas.

Checkout demo.html for an example.

##How? Suppose you have this markup:

<textarea>
</textarea>

And this call to the plugin:

$('textarea').maxLength(100);

The plugin will prevent the user from entering more than 100 characters into the textarea. Check out demo.html a more complex example, including some fancy stuff like this, where the max length is specified by an attribute:

<textarea class='max-by-val' data-val-length-max="5"></textarea>
<input class='max-by-val' data-val-length-max="7"/>

##Note! This plugin allows you to keep on chaining, so, for example:

$('#myelement').maxLength().css({border:'1px solid blue'});

Would run maxLength on #myelement then add a blue border to it after.

##Options:

The following options can be provided like so (default values specified):

$('.yourSelector').endlessInputs({

	// none yet

});      

##Whats next?

The world!

##Found a bug?

Submit a bug report above or here

Or ping me on Twitter or on my blog

About

No description, website, or topics provided.

Resources

License

GPL-2.0, MIT licenses found

Licenses found

GPL-2.0
GPL-LICENSE.txt
MIT
MIT-LICENSE.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published