This is done automatically for every browser except Chrome.
I\'m guessing I have to specifically target Chrome.
Any solutio
With Pure CSS it worked for me. Make it transparent when Entered/Focues in input
input:focus::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: transparent !important;
}
input:focus::-moz-placeholder { /* Firefox 19+ */
color: transparent !important;
}
input:focus:-ms-input-placeholder { /* IE 10+ */
color: transparent !important;
}
input:focus:-moz-placeholder { /* Firefox 18- */
color: transparent !important;
}