hi i am working on a smallproject to display images from Xml to HTML page..It Works great on IE and FireFox But Not on Google Chrome this is my XML COde

<Data>
  <Details>
  <Id> 1 </Id>
  <Photo><![CDATA[<img src=../Seceret/photos/download.jpg width=150 height=150>]]></Photo>
  <Mindet> Hi one </Mindet>
  <Maxdet> Hi I am 1 </Maxdet>
  </Details>
  <Details>
  <Id> 2 </Id>
  <Photo><![CDATA[<img src=../Seceret/photos/download(2).jpg width=150 height=150>]]></Photo>
  <Mindet> Hi Two </Mindet>
  <Maxdet> Hi I am 2 </Maxdet>
  </Details> 
<Details>

and This is my HTMl Code

<html>
<head>
<title>Profiles</title> 
<script src="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
var xmlDoc=null;
if (window.ActiveXObject){
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
}
else if (document.implementation.createDocument){
xmlDoc=document.implementation.createDocument("","",null);
}
else{
alert('Browser cannot handle this script');
}
if (xmlDoc!=null){
xmlDoc.async=false;
xmlDoc.load("as.xml");
var x=xmlDoc.getElementsByTagName("Details");
for (i=0;i<x.length;i++)
{ 
document.write(x[i].getElementsByTagName("Photo")[0].childNodes[0].nodeValue);
document.write("<br/>");
}
}
</script>
</head></html>

can any one please help me out as it is urgent

can any one please help me out

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.