Tagged Questions

0
votes
1answer
40 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', …
0
votes
0answers
18 views

SHDocVw insert element in document.body?

Hi, I am trying to inject html and js into an IE from a bho. To get the body I use: Code: public static SHDocVw.WebBrowser webBrowser; HTMLDocument document = (HTMLDocument)webBrowser.Document; …
0
votes
1answer
75 views

Is there a way to get all of a DOMElement’s attributes?

I'm reading some XML with PHP and currently using the DOMDocument class to do so. I need a way to grab the names and values of a tag's (instance of DOMElement) attributes, without knowing beforehand …
0
votes
1answer
178 views

PHP XML node deletion

i have an XML file with large number of tags. it has more than 2000 tag here and there. i want to delete all that htmlText Tag and save it as a new xml. how cani do that in PHP??? here is the code …
0
votes
7answers
225 views

JQuery - Hardcoding HTML in Javascript - Is there a better way to dynamically create dom elements?

I have a lot of messages, and raw HTML that I hard code in my javascript code, such as: var subjectId = $(subject).attr('subjectId'); var subjectName = $(subject).attr('subjectName'); var html = …
0
votes
1answer
151 views

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

Hello, 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 …
0
votes
2answers
425 views

Is there a better way to change a DOMElement->tagName property in php?

Hi all, I just ran into this building a Textbox control for my MVC framework, where just before finalizing the whole document I call PreRender on everything that inherits from ServerTag (which in …