I've scoured this site and others trying to find an answer to my issue. I'm using jQuery Mobile 1.1.1, jQuery 1.7.2, jQuery Validation 1.9. and a JSON service that returns boolean.
The below remote call works great in any computer browser, but does not work in mobile browsers.
remote: {
url:'https://myjsonservice/check.json',
type:"POST",
dataType:'jsonp',
dataFilter:function(data) {
if( data == "true" ) {return success;}
}
},
Any ideas on how I can get this working with mobile browsers?