Answer the question
In order to leave comments, you need to log in
How to make IE < 9 parse XML into a jquery object and work with it?
It is necessary to get a jquery object from such XML (it is slightly simplified), which is returned to me by ActiveX.
<?xml version="1.0" encoding="windows-1251"?>
<root>
<Certificate>
<Check>
<CRL address="" type="LocalStore">CRL не найден в локальных хранилищах</CRL>
</Check>
<Version>3</Version>
</Certificate>
</root>
var jXML = $($.parseXML(XML));
var wrapper = $('<div></div>').html(XML);
wrapper.find('Check').remove();
Answer the question
In order to leave comments, you need to log in
https://www.dropbox.com/s/ihsj7c2jdr23mmn/xmljsonj...
//here you can do either from json xml from xml obj/xml string json
//transfer your xml to json process and distill back to xml
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question