0

Possible Duplicate:
How do you disable browser Autocomplete on web form field / input tag?

I entered a value in input text for example: email@email.com, after when I entering another value same area, seems the previously entered data (email@email.com).But I don't want to appear it. How can I do this?

Community
  • 1
  • 1
  • 2
    See this: http://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field-input-tag – cem Nov 28 '12 at 14:31
  • information entered is kept in cache?information accessible using firebug with this trick? –  Nov 28 '12 at 14:54

1 Answers1

0

You could use "placeholder"

<input type="text" placeholder="email@email.com">
Ofniet
  • 56
  • 2