vote up 0 vote down star

Guys,

I want to create some text based on user input, and when user enter some text, the first word will automatically set backgroundcolor, but the other words still remain same (no background color), can I do this ?

Thanks

flag
Inside a textbox – klanjabrik Jul 22 at 4:56
You can set the color of the whole text inside the textbox. But a portion of it seems difficult. – adamantium Jul 22 at 4:58
ic, we've thinking to provide preview area, so when user type some text, it will previewed. thx Phoenix. – klanjabrik Jul 22 at 5:00
i want simply method, so using WYSIWYG is not an option. – klanjabrik Jul 22 at 5:13
So why do you want to show a preview of the text entered in a textbox. Will the textbox accept html characters? – adamantium Jul 22 at 5:31

2 Answers

vote up 0 vote down

You could do it with an iFrame if you turn designMode on, add an event listener for keypress then wrap the first word in the iFrames body with <span style='background-color: red'></span>. You would then have to have a hidden form field that mirrored the data that is typed into the iFrame (removing the span tag).

If you want to go this way let me know if you need any more help.

link|flag
vote up 1 vote down

WYSIWYG editor will be the best choice for previewing text and editing at the same time.

Some popular ones are

  1. TinyMCE
  2. STEditor
  3. FCKeditor
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.