prevent auto-fill fields

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
User avatar
Burrito
Spockulator
Posts: 4715
Joined: Wed Feb 04, 2004 8:15 pm
Location: Eden, Utah

prevent auto-fill fields

Post by Burrito »

I've noticed on a few sites (american express being the most recent) that they have some form fields that will not autofill when you start entering information into them.

anyone know how this is done?

With my sites anythign that is in a secured environment won't auto-fill form fields, but the sites to which I'm referring are not using SSL...they just dont' remember any user info???
The Monkey
Forum Contributor
Posts: 168
Joined: Tue Mar 09, 2004 9:05 am
Location: Arkansas, USA

Post by The Monkey »

User avatar
hawleyjr
BeerMod
Posts: 2170
Joined: Tue Jan 13, 2004 4:58 pm
Location: Jax FL & Spokane WA USA

Post by hawleyjr »

Why it took me so long to remember this...I will never know:

Code: Select all

<input size="20" name="newCreditCardNumber" autocomplete="off">
Post Reply