I am running into issues when trying to use the DOMParser in my js code. In my code, I retrieve an xml file via xmlhttp.responseText soap response. I want to be able to ac
var DOMParser = require('xmldom').DOMParser; var doc = new DOMParser().parseFromString( '\n'+ '\ttest\n'+ '\t\n'+ '\t\n'+ '' ,'text/xml');