Just start using Zoom. Wonderful product. Is there a way to clear the search input box after a user clicks on it? I've tried
<script language="javascript">
function cleartext()
{
document.form1.textbox.value = ""
}
</script>
<input type="text" name="zoom_query" size="10" value="" onclick="cleartext()">
<input type="submit" value="Search">
However, it does not work. Thoughts are appreciated. Thanks in advance.
<script language="javascript">
function cleartext()
{
document.form1.textbox.value = ""
}
</script>
<input type="text" name="zoom_query" size="10" value="" onclick="cleartext()">
<input type="submit" value="Search">
However, it does not work. Thoughts are appreciated. Thanks in advance.
Comment