I have the following form element:
<input type="text" id="fullName" data-bind="textInput: fullName" maxlength="50" autocomplete="name">
<label for="fullName">Name</label>
However, the knockout binding prevents from taking advantage of the autocomplete feature of browsers. Is there a way to catch the autofill
browser event? Or is there a workaround to bind data from autofill to the KO variable?
PS : I'm looking for a solution that is cross-browser compatible. I have tried the solution provided here, but it doesn't serve my purpose :