vote up 2 vote down star

If I have a script tag like this:

<script
    id = "myscript"
    src = "http://www.example.com/script.js"
    type = "text/javascript">
</script>

I would like to get the content of the "script.js" file. I'm thinking about something like document.getElementById("myscript").text but it doesn't work in this case.

flag

50% accept rate
I'm having hard time figuring out why you need to access the content? Can you give some information about what you plan to do with it? – Gene Sep 29 '08 at 12:19
You mean the content of script.js? – Vinko Vrsalovic Sep 29 '08 at 12:20
Yes, I mean the content of script.js. I want to cache it and use it later. – Markus Johansson Sep 29 '08 at 12:29
Where would you cache it? I mean, how would you get your cached data to persist beyond the lifetime of the script as loaded in the page? – SpoonMeiser Sep 29 '08 at 12:35
Markus: I recommend adding a clarification to your quiestion or you'll just keep getting answers in the same vein as those below :) – _Lasar Sep 29 '08 at 12:40
show 1 more comment

12 Answers

vote up 3 vote down

You want to get the contents of the file http://www.example.com/script.js ? If so, you could turn to AJAX methods to fetch its content, assuming it resides on the same server as the page itself.

Could you elaborate on what you're trying to accomplish?

link|flag
I want to store the content of the script so that I can cache it and use it directly some time later without having to fetch it from the external web server (not on the same server as the page). – Markus Johansson Sep 29 '08 at 12:22
If so, don't worry about that, the browser handle itself the caching of external JS scripts. – gizmo Sep 29 '08 at 12:24
vote up 2 vote down

I don't think the contents will be available via the DOM. You could get the value of the src attribute and use AJAX to request the file from the server.

link|flag
vote up 1 vote down

.text did get you contents of the tag, it's just that you have nothing between your open tag and your end tag. You can get the src attribute of the element using .src, and then if you want to get the javascript file you would follow the link and make an ajax request for it.

link|flag
vote up 1 vote down

if you want the contents of the src attribute, you would have to do an ajax request and look at the responsetext. If you where to have the js between and you could access it through innerHTML.

This might be of interest: http://ejohn.org/blog/degrading-script-tags/

link|flag
vote up 0 vote down

Not sure why you would need to do this?

Another way round would be to hold the script in a hidden element somewhere and use Eval to run it. You could then query the objects innerHtml property.

link|flag
vote up 0 vote down

If you're looking to access the attributes of the <script> tag rather than the contents of script.js, then XPath may well be what you're after.

It will allow you to get each of the script attributes.

If it's the example.js file contents you're after, then you can fire off an AJAX request to fetch it.

link|flag
vote up 0 vote down

The question is not clear enough. Do you want to get the content between the tags (which is empty in your example) or the contents of the script file (source)?

link|flag
vote up 0 vote down

In a comment to my previous answer:

I want to store the content of the script so that I can cache it and use it directly some time later without having to fetch it from the external web server (not on the same server as the page)

In that case you're better off using a server side script to fetch and cache the script file. Depending on your server setup you could just wget the file (periodically via cron if you expect it to change) or do something similar with a small script inthe language of your choice.

link|flag
vote up 0 vote down

Hopefully you are already using some JavaScript library...

What about getting the src attribute's value, the URL, and then use your library's Ajax tools to make a request to that URL and save that result wherever you are desiring to do so?

The specific details would vary depending on the library you are using.

link|flag
vote up 0 vote down

You want to use the innerHTML property to get the contents of the script tag:

document.getElementById("myscript").innerHTML

But as @olle said in another answer you probably want to have a read of: http://ejohn.org/blog/degrading-script-tags/

link|flag
vote up 0 vote down

If a src attribute is provided, user agents are required to ignore the content of the element, if you need to access it from the external script, then you are probably doing something wrong.

Update: I see you've added a comment to the effect that you want to cache the script and use it later. To what end? Assuming your HTTP is cache friendly, then your caching needs are likely taken care of by the browser already.

link|flag
vote up -1 vote down

Using 2008-style DOM-binding it would rather be:

document.getElementById('myscript').getAttribute("src");
document.getElementById('myscript').getAttribute("type");
link|flag

Your Answer

Get an OpenID
or

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