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: 5 months 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);
```