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
A real time and simple solution:
$('form').on('keyup change paste', 'input, select, textarea', function(){ console.log('Form changed!'); });