https://github.com/surjikal/jquery-aftertext
Call a function after the user is done typing.
https://github.com/surjikal/jquery-aftertext
Last synced: 5 months ago
JSON representation
Call a function after the user is done typing.
- Host: GitHub
- URL: https://github.com/surjikal/jquery-aftertext
- Owner: surjikal
- Created: 2012-07-03T04:43:17.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-07-03T05:01:09.000Z (about 13 years ago)
- Last Synced: 2024-12-31T15:24:42.310Z (6 months ago)
- Size: 97.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jquery-aftertext
Call a function after the user is done typing.
## Usage
The api is similar to the _setTimeout_ one:
```javascript
$('input').afterText(function() {
alert('bacon');
}, 1000);
```