You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firefox will store the values of fields, so that when you refresh you keep the values in fields like url. Chrome doesn't.
Is there a input field option to enable this?
Otherwise we might want to store this in localStorage.
The text was updated successfully, but these errors were encountered:
I tried adding autocomplete="on" and autosave to the input element, but this doesn't help.
It looks like Chrome doesn't store it unless it's actually submitted, I prevent the submit using a event.preventDefault(); to prevent a page refresh. Using return false in a submit handler gives the same behavior.
Firefox will store the values of fields, so that when you refresh you keep the values in fields like url. Chrome doesn't.
Is there a input field option to enable this?
Otherwise we might want to store this in localStorage.
The text was updated successfully, but these errors were encountered: