I use HTML5 placeholder attribute to label form elements.
I wish to hide the placeholder onfocus event, But in firefox it dissappears only when user starts to type.
It goes well with on all other web browsers when i use the following style
[placeholder]:focus::-webkit-input-placeholder {
color: transparent;
}
but not on latest version of firefox.
How to hide placeholder onfocus on firefox browser?