Tagged Questions
0
votes
2answers
71 views
How can I get the actual displayed text from an HTML TextNode instead of the HTML markup?
I'm trying to turn a DOM node and all its children into a plain text markup of my design. I can use node.childNodes to get a list of all the content and recursively turn it into my string format.
...
3
votes
1answer
101 views
Accessing an imported element after the original DOMDocument is destroyed
I've been messing around with DOMDocument lately, and I've noticed that in order to transfer elements from one document to the next, I have to call $DOMDocument->importNode() on the target ...
0
votes
1answer
17 views
XmlNodes stripping out HTML
Got some html with javascript in, the javascript creates an MSXml2 object and loads some XML from a file, and populates a span. However the HTML that's within the XML is being stripped. Is there a way ...