Lets say I am typing the word "hello" into a textarea. How would I, after I had typed hello, select that word I had just typed, and modify it. For example, after I typed the word hello, without hitting the space bar, recognize the word is hello, and before and after it add <b> and </b> around the word. So the ending result would be <b>hello</b> I know textarea's don't take HTML, but for the sake of argument. The only way I can think to do this is to run a funtion each time the user presses a key, and add the content of the texarea to an array, breaking it at the spaces. But that requires spaces, and than having to cross referance the array will take time. Is there anyway to do this easily?
| |||
|
feedback
|
|
You'll definitely have to trap each keypress if you want it to do the replacement as you type, but you don't have to test for spaces. The following worked when I tested it in IE:
Essentially on every keypress this does a string replace to take all instances of "hello" not already surrounded by ">" and "<" (including where "hello" is at the start or end of the string), and substitute in This approach allows for the fact that the user may not have typed the word "hello" in one go, e.g., if they made a typo and initially had "I say hllo to you" then went back and added the "e" then you (presumably) want to replace the "hello" even though it isn't at the end. Also I do a global replace so that if the user pastes in "hello hello hello" they'll all be replaced. Decide for yourself if you want a case-insensitive replacement. If there are other words you are looking to replace too you could add them to the same regular expression if they all just need the bold tags, otherwise if each special word has its own required formatting define an array of search regexes and replacement strings and loop through them within the function. Note that my regular expressions are a bit rusty so I won't be at all surprised if there's a nicer way to do the same thing, but I'll leave any improvements as an exercise for the reader. | |||||||||||||
feedback
|
|
You can use the JQuery.keyup function to listen for the space key press.
You can use the split and join function as well to accomplish what you describe in the latter part of your question. Edit: Here's more on this idea: http://jsfiddle.net/ingenu8/ukkwM/
and the JS:
| |||||||||||
feedback
|
oin the textarea with the textI said hellto change toI said <b>hello</b>? – Brandon Tilley Oct 25 '11 at 0:22