views:

27

answers:

1

Hi All,

Can anyone help me out with this problem. I want to highlight the text while typing in a TextBox. How can I do this?

+1  A: 

You can use css

input:hover {color:green}
input:active {color:blue}
input {color:red}

or javascript...

<input  ...
onfocus="this.style.backgroundColor='#FEFDE0';"
onblur="this.style.backgroundColor='#FFFFFF';"
>
Aristos
it is coloring the whole background of the TextBox. I need only the text to be highlighted like when we press the mouse and run over the text to select it
Rishabh Ohri