JavaScript Disappear Text
JavaScript
Download (.zip)
<script language="Javascript"> <!-- function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = "" } } //--> </script> <input type="text" size=15 value="Text" onFocus="doClear(this)">
|