jquery - Mathias placeholder plugin bug on IE8 -


so implemented placeholder plugin , have bug on ie8

<asp:textbox id="ctlusername" runat="server" placeholder="user id" maxlength="100"></asp:textbox>  <asp:textbox id="ctlpassword" runat="server" placeholder="password" textmode="password" maxlength="12"></asp:textbox> 

where user id placeholder becomes value of textbox, dont :(

by way text box has focus onload.

the password works :)

and jquery

 $('input, textarea').placeholder(); 


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -