Here's my searchbox codes:
<form action="/search/" method="get" />
<input class="search" name="string" size="15" value="type here.." onclick="(this.value=='type here to search') ? this.value = '' : false;" type="text" />
<input name="submit" value="Go" type="submit" />
</form>
There is a default text in the search box: type here..
AND, while clicking on the input box, the text is suppose to vanish. BUT it is not happening.
What am I missing?
Thank you very much.