Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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:

  1. get string as innerHTML
  2. get cursor position using a function (now I can find the word that was modified)
  3. read backwards till a space is found (character by character comparison)
  4. 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 read in 5 chars if a ; is found and check against that. But this is seems very inefficient. So is there a better way to do this?

like image 797
Diff.Thinkr Avatar asked Mar 15 '11 07:03

Diff.Thinkr


2 Answers

String.fromCharCode(160) worked for me. It stands for   character. if(str == ' ') was not working in if condition, neither did trim(); but if(str == String.fromCharCode(160)) worked.

For checking normal space use if(str.trim() == '')

like image 175
Sacky San Avatar answered Nov 20 '22 00:11

Sacky San


I found a workaround. Previously, I was using innerHTML to get the contents. Now, I'm using targ.firstChild.nodeValue where targ is the element whose content is needed.Then checking with str.charCodeAt(i)==32 || str.charCodeAt(i)==160 .

This works well.

like image 35
Diff.Thinkr Avatar answered Nov 20 '22 01:11

Diff.Thinkr