I am doing some manipulation of TextNodes in javascript, and I (unfortunately) need to support IE6. Node.normalize() is crashing, and I need to work around this. My first inclination is to just re-implement it using other DOM methods. How would I implement this?
|
I've just written my own implementation for another question here and came across this question. My version is shorter and more efficient than those posted here, so I'll post it again. The improvements:
The code:
|
|||
|
|
|
The solution above was running very slow and crashing Firefox for me. So I optimized it a bit and it's working great now (the main issue was with repeatedly referencing the HTML collection object node.childNodes). Thanks for the great starting point, but I figured this was worth posting:
|
|||
|
|
|
You'd need to recursively look through all of the child nodes of the current node. When considering a node, you'd delete any empty text nodes and combine any adjacent text nodes.
|
|||
|
|
|
based on tvanfosson's pseudocode, here's what I came up with in javascript:
|
|||
|
(unfortunately)– SLaks Jan 7 '10 at 20:04