Pathname in javascript

A

Asad

Hi,

I am trying to load an XML file. The problem is that it only works if
the xml file is in the same directory as the file containing the
Javascript that loads it. So this works:

var xmlDoc=new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("sample.xml")

But this doesn't:

var xmlDoc=new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("c:/sample.xml")

or anything else for that matter ...

Why is this?
 
B

bruce

Hi,

I am trying to load an XML file. The problem is that it only works if
the xml file is in the same directory as the file containing the
Javascript that loads it. So this works:

var xmlDoc=new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("sample.xml")

But this doesn't:

var xmlDoc=new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("c:/sample.xml")

or anything else for that matter ...

Why is this?


It's working for me!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,776
Messages
2,569,603
Members
45,186
Latest member
vinaykumar_nevatia

Latest Threads

Top