This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: search & clone problem


Walter,
It will do that is where you told it to put it when you wrote
// Stick it over in our storage XML Object - objXMLset
   objXMLset.documentElement.insertBefore(cloneTree,
objXMLset.documentElement.firstChild);
You really want to do something more like
// First search for the level 3 node then
   cloneTree = l3node.appendChild(cloneTree);

Ciao Chris

XML/XSL Portal
http://www.bayes.co.uk/xml
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]