Is it possible to dynamically format input text with AJAX?

Derek

New member
For example, as someone types in the word "dog" in a sentence, "dog" would bold itself, or change color.

I don't need to know how, necessarily (yet), but if you could provide a short example, that'd be great too.
 
you need to parse the input buffer. when a keyword is satisfied (dog in your example), initiate special handling (bold in your example).
 
you need to parse the input buffer. when a keyword is satisfied (dog in your example), initiate special handling (bold in your example).
 
Back
Top