so first of all here's the url:
http://www.jayzeekay.info/fman.php
i'm using childNodes[1] to test the document for compatibility with opera
i found out very strange thing when testing my script in opera
(first have a look at the xml in the first post)
the below statement alerts 'response' in IE but in OPERA it alerts
'xml'!!!!!
Code:
alert(oXmlDom.childNodes[1].nodeName);
as you see OPERA shows the xml declaration (or whatever it is called) as the first child but the shows 'response' as the second child (index number 1)
but in IE firstChild is 'response' so the second child (index number 1) will be 'undefined'.
that's why i'm checking whether childNodes[1] is 'undefined' or not
this is really strange
if you have opera installed you can check this out
as you know i'm know parsing responseText, so i don't have that older oXmlDom version to upload to my hosting so that you can check