Hi everybody,
I'm parsing a file (with DOMParser) like :
hilton street
london
the resulting DOM document has some 'text' nodes with a Carrige Return
and more precisely I have:
-> element
CR -> text
-> element
hilton -> text
CR -> text
-> element
london -> text
I would like to remove these CRs.
Can somebody help me ?
Is there an undocumented API to disable CR parsing ?
Thanks
Fabio