iOS parse html after server side javascript is run -
i trying parse website ios application... parsing html tags works fine hpple, want parse site after java scripts , other server side scripts run... how go doing this?
this java script run on site launch... need one, $('h1').html(sd.number);
$(document).ready(function() { var names = ""; var today = new date(); $.getjson('space.json', function(sd) { $('h1').html(sd.number); $.each(sd.people, function(key, val) { var launch = new date(val.launchdate); var diff = new date(today - launch); var days = math.floor(diff/1000/60/60/24); names += ('<a href="' + val.bio + '" target="_blank"><div class="item cf"><div class="person-name"><h2>' + val.name + '</h2><div class="flag '+ val.country +'"></div><h3>' + val.title + '</h3></div><div class="person-days"><h4>' + days + '</h4><p>days in space</p> </div></div></a>'); }); $('#listing').html(names); }); });
make http request (without parsing anything) full url of space.json (add missing prefix). should end looking http://www.yourdomain/space.json. then, deserialize json response usual.
Comments
Post a Comment