I want to have a textbox that by default contains something like "enter text here", but when clicked in, another word takes the default value's place.
What I have so far just contains the code to display the default value:
<input type="text" name="phrase" value="Enter text here..." size="24" onfocus="if(this.value == 'Enter text here...') { this.value = ''; }" onBlur="if(this.value == '') {this.value='Enter text here...';}">