Skip to content

Instantly share code, notes, and snippets.

@rvanlieshout
Created February 21, 2012 13:02
Show Gist options
  • Save rvanlieshout/1876421 to your computer and use it in GitHub Desktop.
Save rvanlieshout/1876421 to your computer and use it in GitHub Desktop.
$.fn.observe = function(time, callback) {
return this.each(function() {
var form = $(this)
var serialized = form.serialize();
setInterval(function() {
if (serialized != form.serialize()) {
serialized = form.serialize();
callback.call(form);
}
}, time * 1000);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment