Link to home
Start Free TrialLog in
Avatar of RamyBouchra
RamyBouchra

asked on

JavaScript Highlight or Select data a textbox

Dear Experts.

I am using ASP.NET2.0, C#.
I want to make Highlight  or Select data in side a textbox through JavaScript.
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Define "Highlight":  change color?  change selection?

Bob
ASKER CERTIFIED SOLUTION
Avatar of muzzy2003
muzzy2003

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RamyBouchra
RamyBouchra

ASKER

thank you for your reply
but i want it to be like if i pres TAB so it will be selected so i can write over it with out deleting the exsiting value.

thank you.
You must have missed this:

   textbox.setSelectionRange(0, textbox.value.length);

Call it with the onFocus event.

Bob