Click here to Skip to main content
15,892,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
$("#subtraction").dblclick(function () {
            str = str + " " + "-";
            $("#ctl00_ContentPlaceHolder1_txtCreateColumn").val(str);
        });


I want to change the color of "-" (subtraction sign) in txtCreateColumn textbox.
how can I do it?
Posted

1 solution

You can not give format to part of the text inside a html INPUT element, you can only format the whole text.
 
Share this answer
 
v2
Comments
Member 9581488 10-Jan-13 16:25pm    
Its ASP Textbox like:
<asp:TextBox ID="txtCreateColumn" runat="server" Width="300px">
Sergey Alexandrovich Kryukov 10-Jan-13 16:51pm    
And?
—SA
Member 9581488 10-Jan-13 22:02pm    
I want to change color of subtraction sign when appending it to txtCreateColumn textbox.
I have bunch of strings in textbox and have to differentiate all of them using different color.
Please suggest.
Sergey Alexandrovich Kryukov 11-Jan-13 0:21am    
Suggest what? You just got the answer. Render it separately from input element, in some other element, not input... But why?
—SA
Sergey Alexandrovich Kryukov 10-Jan-13 16:51pm    
Of course not. My 5.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900