Does HTML5 Local Storage work in Cordova / PhoneGap? I am trying to use it, both the HTML5 way and the way specified in the docs. Neither work.
Specifically, I am trying
i am using cordova to build an Android app and i am able to save local storage variables with window.localStorage['username'], like:
window.localStorage['username'] = data.username
it is like a PHP associative array.
Hope that helps