Is it possible to get the initial value of a form input field?
For example:
Save the original_values @ document.ready. $(function(){ var original_values = $.map($('form input'), function(input){ return $(input).val() }); })