From 25dd0cd4e8d38f46c7b55b6174637d03c9e9ce8a Mon Sep 17 00:00:00 2001 From: Andrew Kozlov Date: Thu, 29 Oct 2015 15:05:30 +0500 Subject: [PATCH] Delay option example Add delay option example --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cc2dc40..bd0747f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,11 @@ Usage Monitor the form you're interested in: $('form').watch(); - + +Optionally, you can pass delay option: + + $('form').watch(400); // 400ms delay + Then bind to the watch events: // 'modified' - Fired when data changes. @@ -54,4 +58,4 @@ Binding to individual form elements is a pain, and `form.change()` only fires on Bugs, feedback, or patches? =========================== -Why, just use the [issue tracker](https://github.com/kylefox/jQuery-FormWatch/issues) right here on GitHub! \ No newline at end of file +Why, just use the [issue tracker](https://github.com/kylefox/jQuery-FormWatch/issues) right here on GitHub!