https://github.com/moappi/jquery.only.text.js
jquery plugin that will limit the text entered in an input field while typing. Set which alpha numeric characters are allowed as well as the max number of characters
https://github.com/moappi/jquery.only.text.js
Last synced: about 1 year ago
JSON representation
jquery plugin that will limit the text entered in an input field while typing. Set which alpha numeric characters are allowed as well as the max number of characters
- Host: GitHub
- URL: https://github.com/moappi/jquery.only.text.js
- Owner: moappi
- Created: 2014-06-03T18:43:37.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-03T19:10:24.000Z (about 12 years ago)
- Last Synced: 2025-01-22T00:39:54.409Z (over 1 year ago)
- Language: JavaScript
- Size: 125 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Simple input validator that insures only the characters you want in an html input box are entered. Specify which characters are allowed and as well as how many
## Usage
$(inputs).only("ABC123");
or for full functionality
$(inputs).only({allowed:"ABC123",max:10});