I'm having a "list" that I want to populate with a background-json request. Items have different headings and traffic should be minimal (mobile webapp), DOM-structure something like:

<div id="deckStart">
  <div id="cardContacts">
    <h2>Contacts</h2>
    <div id="cardContactsContent">nothing here until JSON</div>
  </div>
  <div id="cardTodo">
    <h2>To do</h2>
    <div id="cardTodoContent">nothing here until JSON</div>
  ....

//EDIT

OK, this works:

x$(window).on('load', function() {
  x$(window).xhr('json.txt', {
    async: true,
    callback: function() {
      var t = eval('(' + this.responseText + ')');
      for(var key in t) {
        var obj = t[key];
        x$('#' + key).html('inner',obj);
      }
    }
 });

but why doesn't JSON.parse work on chrome? Eval seems dirty..

//end edit

What would be the most efficient way to populate the respective content-divs with one single JSON-request?

  • Temp load into JS-array?
  • Temp load into hidden DOM-part?
  • Some regexp-trick or other I cannot think of?

The network stability / speed is unreliable.

regards,

link|improve this question

1  
Chrome can parse JSON fine. Open a chrome console and type: JSON.parse('{"foo":"bar"}') With that said, JSON.parse is squirrelly on different browsers, and I think that for some reason I remember Chrome having trouble with newline characters at one point. Regardless, using eval is setting yourself up for being hacked. – JSager Jul 27 '11 at 18:26
feedback

1 Answer

up vote 1 down vote accepted

Can you get jQuery on there? You could do it in a heartbeat with jQuery...

link|improve this answer
Believe ordinary jq is too heavy and jq-mobile isn't really my thing - too much iPhone-wannabe... Thanks for info anyway, :-) – user247245 Jul 22 '11 at 23:11
feedback

Your Answer

 
or
required, but never shown

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