I'm using getJSON to get data from an external server, this is for building an app. In Firefox on my desktop this works fine:
jQuery.getJSON("http://www.url.com/api/get_category_posts/?slug=slug&count=10&callback=?",
function(data) {
alert(JSON.stringify(data, null, ' '));
});
but on a mobile browser (tested multiple) the parameter count seems to be overruled and set to a default of 5.
Anyone familiar with this?