Preventing Firefox from remembering the input value on refresh with a meta tag

For an input tag there’s the attribute autocomplete you can set:

<input type="text" autocomplete="off" />

You can use autocomplete for a form too.

Leave a Comment