I am developing an app using jQuery1.6.1, Phonegap 1.5(cordova-1.5.0.js), jQuery Mobile 1.0.1, and the cookies plugin (jquery.cookies.2.2.0.js) in Android.
I want to set cookies in one page and want to access the same cookies in another page.
To Set
$.cookies.set('sample', 'Cookies_Value');
To Get
$.cookies.get('sample');
While accessing the app on device, I am unable to set and get the cookies values. Is there any other way to store the cookies in device?