I'm working on this website
The problem I have is on the input of the password:
When you click on it on IE9 and other browsers like Chrome and mozilla, the text changes so you can enter the password.
But that doesn't happen on IE8, if you click over it the text just stays there always, so I can't enter a pass.
This is my input code:
<input class="login_modal password" type="text" value="Contraseña" onfocus="this.type='password';this.value=''" onblur="if(this.value == ''){this.type='text';this.value='Contraseña';}" />
Any ideas to make it work cross-browser and Ie8 also?