Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose I have a javascript file named "main.js" referenced on a page.

Now inside main.js I want to get the absolute path of this current file, something like:

http://server/app/main.js

http://server/app/script/main.js

What is the fastest manner?

share|improve this question

3 Answers

up vote 2 down vote accepted

You can investigate script collection at:

var scripts = document.getElementsByTagName("script");

For each element in the returned scripts array you can access its src attribute.

The currently executing include file will always be the last one in the scripts array. So you can access it at scripts[scripts.length-1].

Of course this will only work at time of initial code run and would not be useful for example within a function that is called after initial script is loaded, so if you need the value available later, you would need to save it to a variable.

share|improve this answer
thanks ,this is what I want – hguser Nov 7 '12 at 2:06
var path = document.location.pathname

will provide the current html page.

if you look for the current script, try the way mentioned in this site:

http://bencarpenter.co.uk/javascript-path-to-the-current-script

share|improve this answer

as long as JavaScript runs on the client web browser, no direct way is possible to get file's directory on server. even on the client side, you are not permitted to get information about where the file is saved on browser cash. You can find file path basically by sending Ajax calls to the server.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.