How Can I Select Nodes From An Object And Then Relocate Those Nodes To My Document In Internet Explorer 8+?
What I want to accomplish: create an object by performing an XSL transformation (on an XML DOM object), let's call it 'fragment' select some nodes by running an XPATH query on the
Solution 1:
Instead of Msxml2.DOMDocument.3.0 try Microsoft.XMLDOM
Solution 2:
if you are adding the node, then as you said it must be in DOM range. like document.appendChild() will give the error. So we always do document.body.append.. Similarly, check if this container can directly add the Element..
Post a Comment for "How Can I Select Nodes From An Object And Then Relocate Those Nodes To My Document In Internet Explorer 8+?"