HTML - Turn off autocomplete - disable cache on form inputs of HTML Pages
Search
Tag Search
htaccess
301 redirect
subdomain
disable cache
apache
regular expressions
cache
print design
AJAX
php
regex
html
art
flash
bugs
plugin
hand drawing
javascript
client-side
svn
jquery
action script
car
seo
thickbox
Recently Added
- HTML [3 items]
- SVN (Subversion) [3 items]
- jQuery [10 items]
- PHP [4 items]
Most Popular
- jQuery [10 items]
- PHP [4 items]
- SVN (Subversion) [3 items]
- HTML [3 items]
Member Options
15
Jan
Created by: robilim - Date Added: 15th January 2010 - 0 Responses
Most of the time having auto complete on form inputs is great, especially as a developer when you're constantly filling out forms to test data. I recently came across an instance where the auto complete was overiding my AJAX scripts on keyup. To cure this issue its as simple as adding the attribute, autocomplete="off", to the input.
<input name="input_name" type="text" autocomplete="off" />

