This is done automatically for every browser except Chrome.
I\'m guessing I have to specifically target Chrome.
Any solutio
HTML:
jQuery:
$('#myInput').focus(function(){ $(this).attr('placeholder',''); }); $('#myInput').focusout(function(){ $(this).attr('placeholder','enter your text'); });