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

I have this JSON file I generate in the server I want to make accessible on the client as the page is viewable. Basically what I want to achieve is:

I have the following:

<script id="test" type="application/json" src="http:/myresources/stuf.json">

tag declared in my html document. The file refered in its source has json data. As I've seen, data has been downloaded, just like it happens with the scripts.

Now, how do I access it in javascript? I've tried accessing the script tag, with and without jquery, using a multitude of methods to try to get my json data, but somehow this doesn't work. Getting its innerHTML would have worked had the json data been written inline in the script. Which it wasn't and isn't what I'm trying to achieve.

Remote JSON Request after page loads is also not an option, in case you want to suggest that.

share|improve this question
1  
Instead of a json file, make it a javascript file that assigns the object to a variable. The other approach is to use ajax. – Asad Nov 22 '12 at 14:50
The first suggestion is the current implementation. I would like not to do it because I'm using behaviour to deliver structure. I'd prefer to use structure for structure (if I want JSON, i'll get JSON). Second suggestion is not wanted (I need this data for the initialization process). – ChuckE Nov 22 '12 at 15:00
@ChuckE through a <script> tag or through AJAX you're still going to have to wait for an additional HTTP request to complete. The browser won't let you read the script contents if you fetch it with a "src" attribute, so your only alternative is to make an AJAX request. – Pointy Nov 22 '12 at 15:03
@Pointy through a <script> tag stuff will be evaluated as soon as is downloaded. If I place my json script before my js script, json script data will get evaluated before js script data, that means, I'm not going to wait, data is already there. About it being my only alternative, I'd like to see some official documentation before agreeing with you (not saying you're wrong, just that was exactly the reason I wrote the question). – ChuckE Nov 22 '12 at 15:25
1  
"Remote JSON Request after page loads is also not an option, in case you want to suggest that." ... how is a JSON request so much different than a request sent by a <script src=""></script>? They're both going to be doing GET calls against your server. – blesh Nov 27 '12 at 2:26

1 Answer

up vote 7 down vote accepted

You can't load JSON like that, sorry.

I know you're thinking "why I can't I just use src here? I've seen stuff like this...":

<script id="myJson" type="application/json">
 { 
   name: 'Foo' 
 }
</script>

<script type="text/javascript">
    $(function() {
        var x = JSON.parse($('#myJson').html());
        alert(x.name); //Foo
     });
</script>

... well to put it simply, that was just the script tag being "abused" as a data holder. You can do that with all sorts of data. For example, a lot of templating engines leverage script tags to hold templates.

You have a short list of options to load your JSON from a remote file:

  1. Use $.get('your.json') or some other such AJAX method.
  2. Write a file that sets a global variable to your json. (seems hokey).
  3. Pull it into an invisible iframe, then scrape the contents of that after it's loaded (I call this "1997 mode")
  4. Consult a voodoo priest.

Final point:

Remote JSON Request after page loads is also not an option, in case you want to suggest that.

... that doesn't make sense. The difference between an AJAX request and a request sent by the browser while processing your <script src=""> is essentially nothing. They'll both be doing a GET on the resource. HTTP doesn't care if it's done because of a script tag or an AJAX call, and neither will your server.

share|improve this answer
Great answer. When you say "the script tag being 'abused'" you mean that is a wrong (maybe not wrong, but "creative") use of the script tag? Your n. 2 option is the one we already have in production, I was looking for a strictly json/no-js solution, out of pure experimentation (I'm fine with it not being possible if I'm sure it is). Concerning the final point, I need this information before onload event, and I don't want to make the whole initialization depend of an asynchronous request which may vary in completion time. This is the key difference between Ajax call and script tag. – ChuckE Nov 27 '12 at 8:51
No, I don't think it's "wrong", per say, just... "creative" is probably a good word for it. If actually writing the JSON into the <script> tag is possible, I'd go that route, I guess. – blesh Nov 27 '12 at 13:41
yeh, the whole challenge was loading it using the script tag src attribute and "obfuscate" this information in the document. – ChuckE Nov 27 '12 at 14:43
Well, you can't really hide data from users in a client-side browser app. They can just go into their browser's developer tools and set a breakpoint in the JavaScript and examine objects however they like. – blesh Nov 27 '12 at 16:29
I don't want to hide data from the user, I want to hide js data from HTML (keep HTML in the document, keep javascript in javascript) – ChuckE Nov 28 '12 at 8:48

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.