Tagged Questions

6
votes
1answer
3k views

DOMElement cloning and appending: 'Wrong Document Error'

There's something I don't fully understand about node cloning with the PHP's DOM api. Here's a sample file that quickly duplicates the issue I'm coming across. $doc = new DOMDocument( '1.0', ...
2
votes
3answers
113 views

how to handle DOM in PHP

my PHP code $dom = new DOMDocument(); @$dom->loadHTML($file); $xpath = new DOMXPath($dom); $tags = $xpath->query('//div[@class="text"]'); foreach ($tags as $tag) { echo ...
2
votes
3answers
443 views

Extend DOMElement object

How could I extend objects provided with Document Object Model? Seems that there is no way according to this issue. class Application_Model_XmlSchema extends DOMElement { const ELEMENT_NAME = ...
2
votes
2answers
735 views

jQuery - returning $(this) DOM Element

i'm using DD_Belated.png to save all IE6 users from seeing the madness of unsupported png. However, this great script takes either selector or DOM Element as parameter to it's only function to do ...
1
vote
3answers
41 views

Get DOMElement with specific text PHP / XPath

In PHP, i want to get all DOMElement containing a given text. I get DOMText when $xpath->query("//text()[contains(., 'My String')]"), but which query must i perform for getting DOMElement instead? ...
1
vote
1answer
194 views

How do I get the line number of a DOMElement?

I'm trying to get the line number of a DOMElement object in PHP - the documentation says DOMElement extends DOMNode which implements the getLineNo() method, however, when I try to use this method I ...
1
vote
1answer
926 views

How can I change the name of an element in DOM?

In PHP with DOM, I have a DomElement object which represents an <identity/> element. I have one case where I need to change this so its element name is <person/>, but keep the same child ...
0
votes
2answers
30 views

Save DOMobject as String

Heyho, imagine, you have a DOMelement like text and you have saved this in a variable elem in a function function(elem){ var elem=elem; } And NOW you want (in fact it is me who wants that :-)) ...
0
votes
1answer
79 views

Extended DOMElement object loses it's properties when imported into another document

When importing an extended DOMElement object with specific properties into another DOMDocument than the one it was created with all properties are lost (I guess it doesn't actually copy the no but a ...
0
votes
0answers
99 views

Extended DOMElement object changes to another class

I'm currently working on a class to generate a flow chart using SVG. For this I use a number of classes that replace the standard PHP DOM classes. For the elements in the chart I use a class ...
0
votes
1answer
177 views

PHP DOMElement, replacing text of a node

I have a HTML node like so: <b>Bold text</b> A variable $el contains a DOMElement reference to the text of that HTML node ("Bold text"), got from the XPath expression //b/text() I want ...
0
votes
2answers
393 views

PHP's DomElement->nodeValue has gobbly-gook

I'm parsing a third-party web page using PHP's DOMElement controls. When I use the web page with my browser and view the source, it's clean, but when I access some of the nodes through the ...