Skip to content Skip to sidebar Skip to footer

Input Text Without Previously Entered Value

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 an

Solution 1:

You could use "placeholder"

<input type="text" placeholder="email@email.com">

Post a Comment for "Input Text Without Previously Entered Value"