I have a html page with text content. On selecting any text and pressing the highlight button, I can change the style of the selected text to highlight the same. To implement this feature, i have written the following method.
JavaScript
x
6
1
sel = window.getSelection();
2
var range = sel.getRangeAt(0);
3
var span = document.createElement('span');
4
span.className = "highlight" + color;
5
range.surroundContents(span);
6
This is working fine if you choose a text with no html tag, but when the text has any html tag in between, it is giving error
Failed to execute ‘surroundContents’ on ‘Range’: The Range has partially selected a non-Text node.
How to solve this problem. Is it possible to highlight the same separately for each part(divided by html tags)?
Advertisement
Answer
JavaScript
1
40
40
1
if (window.getSelection) {
2
var sel = window.getSelection();
3
if (!sel) {
4
return;
5
}
6
var range = sel.getRangeAt(0);
7
var start = range.startContainer;
8
var end = range.endContainer;
9
var commonAncestor = range.commonAncestorContainer;
10
var nodes = [];
11
var node;
12
13
for (node = start.parentNode; node; node = node.parentNode){
14
var tempStr=node.nodeValue;
15
if(node.nodeValue!=null && tempStr.replace(/^s+|s+$/gm,'')!='')
16
nodes.push(node);
17
if (node == commonAncestor)
18
break;
19
}
20
nodes.reverse();
21
22
for (node = start; node; node = getNextNode(node)){
23
var tempStr=node.nodeValue;
24
if(node.nodeValue!=null && tempStr.replace(/^s+|s+$/gm,'')!='')
25
nodes.push(node);
26
if (node == end)
27
break;
28
}
29
30
for(var i=0 ; i<nodes.length ; i++){
31
32
var sp1 = document.createElement("span");
33
sp1.setAttribute("class", "highlight"+color );
34
var sp1_content = document.createTextNode(nodes[i].nodeValue);
35
sp1.appendChild(sp1_content);
36
var parentNode = nodes[i].parentNode;
37
parentNode.replaceChild(sp1, nodes[i]);
38
}
39
}
40