Making the current input value an object property when the blur handler is triggered. This way the value is available to any other handlers for processing before the timer defined in the blur handler does, for example on form submit.
The issue I had is that the current value will not get set on form submit because of the timer not completing the _addTag call. With the last value as an object property I can now do the following on submit button click:
Making the current input value an object property when the blur handler is triggered. This way the value is available to any other handlers for processing before the timer defined in the blur handler does, for example on form submit.
The issue I had is that the current value will not get set on form submit because of the timer not completing the _addTag call. With the last value as an object property I can now do the following on submit button click: