Reputation: 33
I am having html input textbox with value of "Hello World".
I want to change the text color of 'Hello' to red using jquery.
Example:
Textbox Value is Hello World. Hello font color is Red
Upvotes: 0
Views: 396
Reputation: 4798
I think you can't just change Hello to red
and change world to another color. but there is a solution to do this, is to create a div
and put spans
inside div
with different colors, and define click, keyup, keydown events
<div class="input">
<span class="red">Hello</span>
<span class="green">world !</span>
</div>
The question has been asked and answered here.
Upvotes: 1