Is it possible to get the initial value of a form input field?
For example:
Input element got property called defaultValue that is storing the original value.
defaultValue
To reach it via jQuery, just use .prop():
.prop()
var value = $(this).prop("defaultValue");
Updated jsFiddle - after changing to "two", the above will return "one".