Search value -> placeholder
-
I recommend changing
<input onfocus="this.value=''" value="Search..." name="searchll" id="searchll" type="text">into
<input value="" placeholder="Search..." name="searchll" id="searchll" type="text">Reason:
“Search…” won’t show again if you remove the text using this onfocus method.
The topic ‘Search value -> placeholder’ is closed to new replies.