View Full Version : Tagboards


Bebe x Baby Luv
04-17-2003, 10:06 PM
how do u instead put the words already inside the box but when u click they go away?

Ex.
______
|name |

epolady
04-17-2003, 10:28 PM
In your <HEAD> :
<script language="Javascript">
<!--
function doClear(theText) {
if (theText.value == theText.defaultValue) {
theText.value = ""
}
}
//-->
</script>

in the input type:

onFocus="doClear(this)"

i.e. <input type="text" value="some value" name="some name" onFocus="doClear(this)">

Bebe x Baby Luv
04-18-2003, 04:19 PM
thanks