Click to See Complete Forum and Search --> : marking the text in a text box


pelegk1
07-31-2003, 01:16 PM
i have a text box
that when i press in the text box its will show the text inside like i moved the mouse all over the text and marked it!
how do i do it?
20x:)
peleg

Nevermore
07-31-2003, 01:19 PM
Do you actually want it selected or just highlighted?

havik
07-31-2003, 03:40 PM
Something like this?

<input type="text" value="Your text field" onFocus="this.select()">

Havik

Nevermore
08-01-2003, 06:57 AM
Or just to highlight it and not select it, you could try
<input type="text" value="Your text field" onFocus="this.style.background='blue'">