I am making a Login form, in which there are two fields-
simplified:
<input type="text">
<input type="password" placeholder="1234567" >
In my tests (FF, Chrome) the placeholer shows grey text.
How can I have the placeholder text in password 'dots' ?
And have placeholder support in IE?
eg. the user sees a fake grey password, not the text 1233467.
(I have jquery available)
Thankyou very much,
Harley
EDIT: Looks like this is the wrong way to use placeholder. However, how can I get IE support? Thanks
<label>
. (<label> Data <input name="data" placeholder="yyyy-mm-dd"> </label>
). The spec is very explicit about not using it as a substitute for a label element. – Butyrate*
in the placeholder – Sontag