In jQuery, is there a simple way to test if ANY of a form\'s elements have changed?
EDIT: I should have added that I only need to check on a c
c
$('form :input').change(function() { // Something has changed });