.type error in IE
- by MrEnder
The line
<input type="text" name="passwordLogin" value="Password" onfocus="if(this.value=='Password'){this.value=''; this.type='password'};" onblur="if(this.value==''){this.value='Password'; this.type='text'};" size="25" />
works in all web browsers except IE... how can I fix it for IE?