I am passing a value through a url in my android phonegap app using the below:
window.location.href = "results.html?score="+encodeURIComponent(myvalue);
However, when the phone/ simulators firmware is updated to 4.03, this no longer seems to work. Could someone please advice further.
Thanks,
Raj
It’s a bug on Android. You should go star it:
https://code.google.com/p/android/issues/detail?id=17535
In the meantime use localStorage.setItem()/getItem() to pass values between pages.