Is it possible to get the initial value of a form input field?
For example:
You could try storing the value in data. For example:
$('#one').data('val',$('#one').val());
And then you could easily retrieve it later like this:
console.log($('#one').data('val'));