Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know i shouldnt do it but it may be easier then explaining to the clients that you should do it through the browser. They have a public computer and a server running on the machine in an admin account (the code i am writing). They want people to enter their information but they dont want someone pressing down on the email input box to display ppls email address. Is there a way i can disable this through code in IE? (i believe they are using 6 but they may use 7 or 8).

share|improve this question
Yes, there is a way. – Matti Virkkunen Sep 16 '10 at 20:43

2 Answers

up vote 10 down vote accepted

Use the non-standard autocomplete attribute:

autocomplete="off"

Works in all modern browsers. Will break HTML 4 validation, though. No way around that. Will be valid in HTML 5.

Reference:

share|improve this answer
so <input ... autocomplete="off"> ok i'll try this now. -edit- yes it worked! will accept when i can – acidzombie24 Sep 16 '10 at 20:41
you could use JavaScript to append the autocomplete attribute to the textbox, no? Then it would work and your page would still validate. Best of both worlds. – Timothy Sep 16 '10 at 20:43
1  
@Timothy good idea, but that won't work with form values that get auto-completed on page load. The only way to disable this that works with valid HTML is to re-name the form elements on every request like user124928239 ... – Pekka 웃 Sep 16 '10 at 20:44
Good point. I didn't think of that. – Timothy Sep 17 '10 at 0:39
<INPUT NAME="name" AUTOCOMPLETE="OFF">
share|improve this answer
6  
-1 for CAPITAL HTML!!! PAINFUL AND NON-VALIDATING!!! – Hello71 Sep 16 '10 at 21:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.