Struggling to accurately explain the process, so feel free to check out this helpful fiddle.
In my form, there are several text input fields and a single submit button. The submit button becomes enabled once any of the form fields have been altered. If a textbox's value is changed, it will receive a new yellow background color using addClass to indicate the modification. The original value is saved during the focusin event and then compared with the new value during onchange.
However, I would like to prevent the original old value from changing when I edit the textbox value and refocus, in order for the background-color to reset accordingly.
Appreciate your help!