Created
February 21, 2012 13:02
-
-
Save rvanlieshout/1876421 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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