Prevent Firefox autocompletion from popping up
autocomplete, firefox, html, javascript, jquery
Solution
Add `autocomplete="off"` attribute to the input element in question. E.g.
<input autocomplete="off">
Also see this document.
Problem
I wrote an autocompletion script for an input field on a website. It uses jQuery and works fine. It should look something like this: autocomplete-1 http://img96.imageshack.us/img96/1994/screenshot1lm.png Unfortunately, Firefox's own autocompletion gets in my way, overlapping some of the results: alt text http://img15.imageshack.us/img15/557/screenshot2ct.png Is is it possible to prevent the Firefox autocompletion field from popping up? (Not only on my machine but for every user of the website)