I have XML string, and I have to load it to DOM document. I have tried this:
    if ($window.DOMParser)
    {
        parser=new $window.DOMParser();
        xml=parser.parseFromString(data,"application/xml");
    }
    else // Internet Explorer
    {
        xml=new ActiveXObject("Microsoft.XMLDOM");
        xml.async=false;
        xml.loadXML(data); 
    }
but on the angular controller.js it doesn't work! I have gotten this:
<body xmlns="http://www.w3.org/1999/xhtml"><parsererror style="display: block; white-space: pre; border: 2px solid #c77; padding: 0 1em 0 1em; margin: 1em; background-color: #fdd; color: black"><h3>This page contains the following errors:</h3><div style="font-family:monospace;font-size:12px">error on line 1 at column 1: Document is empty
    </div><h3>Below is a rendering of the page up to the first error.</h3></parsererror></body>
Thanks for advance.