Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/surjikal/jquery-aftertext
Call a function after the user is done typing.
https://github.com/surjikal/jquery-aftertext
Last synced: 11 days 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 (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-07-03T05:01:09.000Z (over 12 years ago)
- Last Synced: 2024-11-08T10:25:25.691Z (2 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);
```