Just pushed my updates to github, and they are making their way into Apache git.
You can get the latest code here:
https://github.com/purplecabbage/callback-windows-phone
Changes include fixes for XHR to local files, + fixes to allow jQM single/multipage apps function correctly.
Here’s a short video demonstrating the updated Compass API.
## Update
Now 1.4.0 is live! Get it from PhoneGap.com
## SourceCode for the above demo is posted here
https://github.com/purplecabbage/CompassDemo








Hey, i was wondering if its possible to get wifi signal strenght with phonegap.
Whatever I do I cannot make XmlHttpRequest to work on the PhoneGap in WP7.
Just try this:
function appReady(){
var ajax = new XMLHttpRequest();
ajax.open(“GET”,”http://search.twitter.com/search.json?q=bacon”,true);
ajax.send();
ajax.onreadystatechange=function(){
if(ajax.readyState==4 && (ajax.status==200)){
document.getElementById(‘main’).innerHTML = ajax.responseText;
}
}
}