I'm parsing a large XML object, and I want to farm out individual pieces as standalone objects--that is, these new objects should contain no references to the parent (source) XML.
However.
If I construct this code:
var a = $('<parent><child>Exclude Parent</child></parent>');
var b = $('>child', a);
var c = a.children('child');
console.log(a.children('child').parent());
console.log(b.parent());
console.log(c.parent());
Each of these still maintains a parent reference. I would expect var b and c to be independent objects, but they are not. I could convert the child XML to string and then recast as a jQuery object, but that seems both expensive and unnecessary.
How can I instance a new variable which represents only the XML of the jQuery selector?