hi I have a page with a custom element in whcih works fine in firefox but not in IE!
which I am referencing:
In IE getElementsByTagName('xmlInfo').item(0); returns null??
what do I need to do to get this working ??
cheers
Tim
Code:
<xmlInfo>Hello</xmlInfo>
which I am referencing:
Code:
var root = xmlFile.getElementsByTagName('xmlInfo').item(0);
alert(root.firstChild.data);
In IE getElementsByTagName('xmlInfo').item(0); returns null??
what do I need to do to get this working ??
cheers
Tim