Clear Form




Put this between your HEAD-tags:
<script> function clearText(thefield){ if (thefield.defaultValue==thefield.value) thefield.value = "" } </script>


Put this inside your form-tags:
onFocus="clearText(this)"

Free JavaScripts provided
by Winfolinx.com


Back