Michael Pope
Michael Pope
I'll continue documenting my progress here for search purposes. For reference: Line 180 within convert() ``` if (window.DOMParser) { var parser = new DOMParser(); doc = parser.parseFromString(s, 'text/xml'); } else...
Temporary Fix: Replace (line 180): ``` if (window.DOMParser) { var parser = new DOMParser(); doc = parser.parseFromString(s, 'text/xml'); } else { doc = $("")[0]; doc.async = 'false'; doc.loadXML(s); } ```...
That's the desirable way of doing it - however.. there is legacy code that has to be loaded into a colorbox dynamically (The entire system is dynamically generated per encrypted...