> Hi all,
> Is a white space(#text) also considered as a node in a DOM. How to
> ignore the white space?
>
> Thanks
>
> Regards
> SPK
One thing you can do to normalize an element's character data and all of its
child element character data is to call Element.normalize().
This is the simplest thing to do here. The only problem with this approach is
that when you call normalize on an element all sub-elements are also normalized.
I suppose you could write your own utility routine which would effectively do the
same thing as normalize, though only on the immediate character data of the
selected element, so you may want to do that.
Tyler