Jan 30
Do you want the text in a textfield to automatically be highlited when the user clicks it?
then use the code:
<input onFocus="javascript:this.select()" type="text" value="test" />
magic is in the onfocusevent, and the call to the method select:
onFocus="javascript:this.select()"