jQuery Observe
Observe is a jQuery plugin designed to provide change observation.
Example
Searches:
Installation
To install download one of these packobserves and include the jquery-observer.js file in your head with the following:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js" type="text/javascript"></script>
<script src="javascript/jquery-observer.js" type="text/javascript"></script>
Example
Setting up a date or time is easy. The following snippet is a good start:
<form id="search">
<input type="text" name="search" />
</form>
<script type="text/javascript">
$('#search').observe(function () { alert("observe"); });
</script>
Copyright (c) 2010 - 2014 Kevin Sylvestre