https://github.com/agrublev/autocapitalize
A polyfill of sorts, allowing you to do autocapitalize words, sentences, characters in any browser
https://github.com/agrublev/autocapitalize
Last synced: 6 months ago
JSON representation
A polyfill of sorts, allowing you to do autocapitalize words, sentences, characters in any browser
- Host: GitHub
- URL: https://github.com/agrublev/autocapitalize
- Owner: agrublev
- License: mit
- Created: 2017-04-17T22:21:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-18T13:43:18.000Z (about 9 years ago)
- Last Synced: 2025-04-09T12:43:02.555Z (over 1 year ago)
- Size: 4.88 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# autocapitalize
A polyfill of sorts, allowing you to do autocapitalize words, sentences, characters in any browser
Simple usage:
```
$.autocapitalize();
```
will automatically use the existing html attribute autocapitalize and read its value
Options are:
- words
- sentences
- characters
You can also call it on elements you choose and even force a specific type of capitalization:
```
$("input.auto_words").autocapitalize({mode:"words"});
```