I have a site under developement that doesn't show the Value prompt in the Text Input for the quick search.
In my v7 sites very similar code shows the Prompt 'Quick Search' in the search box prior to getting focus. I want to do the same in v8 (Contemporary) with a prompt of 'Search' with the code below - but no Prompt is showing.
Can anyone tell me what's wrong please?
The created html is:
URL: Edit - URL removed FTTB
In my v7 sites very similar code shows the Prompt 'Quick Search' in the search box prior to getting focus. I want to do the same in v8 (Contemporary) with a prompt of 'Search' with the code below - but no Prompt is showing.
Can anyone tell me what's wrong please?
The created html is:
Code:
<form name="simplesearch" method="get" action="http://www.URL.co.uk/cgi-bin/ss900001.pl"> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td align="right" nowrap> <input type="hidden" name="page" value="search" /> <input type="text" name="SS" size="15" value="Search" onfocus="this.value='';" class="actxxsmall" /> </td> <td valign="bottom"> <input type="image" value="ACTION" name="search" src="button_search_button.gif" alt="Go!" /> <input type="hidden" name="PR" value="-1" /> <input type="hidden" name="TB" value="A" /> </td> </tr> </table> </form>
Comment