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?
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?
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';"
>