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
and This is my HTMl CodeCode:<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> <Data>
HTML Code:<html> <head> <title>Profiles</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="js/jquery.mobile-1.2.0.min.css"/> <script src="js/jquery-1.8.3.min.js"></script> <script src="js/jquery.mobile-1.2.0.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


Reply With Quote
Bookmarks