Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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);
```