11548 sujets
Pas de panique c'est un bug de firefox qui est référencé :
https://bugzilla.mozilla.org/show_bug.cgi?id=236791
Pour faire simple il faut rajouter la propriété autocomplete="OFF" sur le tag input qui provoque l'erreur.
Extrait :
It seems to be an issue with autocomplete, so when changing the focus to a field element:
<input type="text" autocomplete="OFF" name="claim_no" size="25">
does not produce an error.
Whereas, <input type="text" name="claim_no" size="25">, produces the error when using focus().
https://bugzilla.mozilla.org/show_bug.cgi?id=236791
Pour faire simple il faut rajouter la propriété autocomplete="OFF" sur le tag input qui provoque l'erreur.
Extrait :
It seems to be an issue with autocomplete, so when changing the focus to a field element:
<input type="text" autocomplete="OFF" name="claim_no" size="25">
does not produce an error.
Whereas, <input type="text" name="claim_no" size="25">, produces the error when using focus().