Click to See Complete Forum and Search --> : Remove text from textbox


teekay
07-08-2003, 05:54 AM
Anyone got the JavaScript for removing text from textboxes.

You know whene users on my webpage clickinside the textbox i have typed in to describe it desepeare when users click the textbox.

Kjetil

Charles
07-08-2003, 05:56 AM
<input type="text" value="foo" onfocus="this.value = ''; this.onfocus = function () {}">

teekay
07-08-2003, 06:11 AM
Thank you for helping me. That was fast.