The following code catch an exception in IE, with number -2146827850
It seems that IE dosn't implement createElementNS function. Is there any way to work around it?
I need your help!
Code:
var xmldoc=XmlDocument.create("1str","2str");
xmldoc.documentElement.setAttribute('code',code);
var node;
try{
node=xmldoc.createElementNS('urn', 'condition');
}catch(e)
{ }
I need your help!
Comment