Detect and space with JavaScript
I'm trying to read the content of a contentEditable div and extract the currently active word. ie. the word which was just entered or one which was modified. My initial approach was: get string as innerHTML get cursor position using a function (now I can find the word that was modified) read backwards till a space is found (character by character comparison) extract the word from the point of space found. But the problem is that the browser sometimes converts the spaces to and sometimes doesn't (There is no problem if there is only one space). Then I decided to using a second loop to