I am trying to parse json file in my phonegap application. after searching on Stackoverflow I found this code
here is my code
$.getJSON(\'http://shobin
Try this:
$(document).ready(function() { var url = "http://www.shobingg.com/cms/sites/php/message.json"; $.getJSON(url + "?callback=?", null, function(data) { console.log(data); }); });
Refered from jsonp with jquery