vote up -2 vote down star

is it possible to use jQuery %Json function to load a javascriptfile.js asynchronously?

flag

40% accept rate
Rephrase? What exactly are you trying to do? – a paid nerd Nov 6 at 8:02
I need to load a load a Json request with an embeded js file. – scrippie Nov 6 at 9:51
to load another js file with a json response. – scrippie Nov 6 at 10:00

3 Answers

vote up 0 vote down

Here's pure JavaScript coding that downloads a JavaScript file and put it in the header page itself (if you plan to have a very lightweight page that is instantaneously visible then download JavaScript file in the background) :

var getheadTag = document.getElementsByTagName('head')[0];
setjs = document.createElement('script');
setjs.setAttribute('type', 'text/javascript');
getheadTag.appendChild(setjs);
setjs.text = x.responseText;
link|flag
vote up 0 vote down

If you're trying to load an external JavaScript file then you should use Ramon's suggestions.

But if you're for sure that the response format is JSON you could use the getJSON which loads JSON data using an HTTP GET request.

jQuery.getJSON( url, [data], [callback] )
link|flag
vote up 3 vote down

$.getScript("/path/to/script.js")

link|flag
but what should the json response be? – scrippie Nov 6 at 7:26
There shouldn't be a JSON response. You asked to load a script, not process a piece of JSON data. – David Dorward Nov 6 at 7:35
i need the script.js embeded in the Json response, it gets a different file depending on response. – scrippie Nov 6 at 7:43
the js file is part of the response – scrippie Nov 6 at 10:01
That sounds decidedly dirty, but generate a script element and a text node containing the data extracted from the JSON. append the text to the script and the script to the body. – David Dorward Nov 6 at 12:34

Your Answer

Get an OpenID
or

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