Clear on mouse click function
http://www.java-scripts.net/javascripts/Clear-Form-Field-Value-on-Click.phtml
Clear default form value script- By Ada Shimar (ada@chalktv.com)
*/
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}
</script>
Clear default form value script- By Ada Shimar (ada@chalktv.com)
*/
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}
</script>
<form>
<input type="text" value="Search this site" onFocus="clearText(this)">
</form>
Comments
Post a Comment