Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
При наведении курсора не очищается.Код:<input type="text" name="searchstring" value="{$searchstring|default:"Что ищем"}" class="formbord">
Как сделать?
<input type="text" name="searchstring" value="{$searchstring|default:"Что ищем"}" class="formbord" onfocus="if(this.value=='Что ищем') this.value='';" >
<input name="searchstring" onMouseOut="if (this.value==\'\') this.value=\'Что ищем\'" onMouseOver="if (this.value == \'Что ищем\') this.value = \'\';" value=\'Что ищем\' type="text" class="formbord">
Типо того)Код:<input name="searchstring" onMouseOut="if (this.value==\'\') this.value=\'Что ищем\'" onMouseOver="if (this.value == \'Что ищем\') this.value = \'\';" value=\'Что ищем\' type="text" class="formbord">
pslava
onFocus - собитие при клике. ТС просил при наведении.
<form style="margin:0px 0px 0px 0px;" action="index.php" method=get>
{section name=i loop=$searchstrings}
<input type=hidden name='search_string_{$smarty.section.i.index}'
value="{$searchstrings[i]}" >
{/section}
<input type="text" name="searchstring" value="{$searchstring|default:"Что ищем"}" class="formbord" onFocus="if(this.value=='Что ищем') this.value='';" >
<select class="formbord" name='brand'>
{section name=i loop=$brands}
<option value={$smarty.section.i.index}
{if $smarty.session.current_brand == $smarty.section.i.index}
selected
{/if}>
{$brands[i]}
</option>
{/section}
</select>
<div style="margin:0px 0px 0px 30px"><input type="Image" name="t" src="images/img_09.jpg"></div>
<!--
{if $old_search_query ne ""}
<input type=hidden name="oldproducts" value="{$old_search_query}">
{/if}
-->
</form>