i m using the, DetailsDoc.load("c:\\details.xml") API of java script. i am able to load it in the desktop browser i.e in mozilla, netscape navigator..
but i am not able to load the same thing in the s60 browser of emulator.
following is the code snippet.
function fetch() {
var DetailsDoc=document.implementation.createDocument("", "doc", null);
if(DetailsDoc!=null)
{
DetailsDoc.async = false;
DetailsDoc.load("c:\\details.xml");
}
}

Reply With Quote

