I am developing an application using jQuery1.6.1, Phonegap 1.5 (cordova-1.5.0.js), jQuery Mobile 1.0.1 and the cookie plugin (jquery.cookies.2.2.0.js) on Android.
I want to set cookies on one page and want to access the same cookies on another page.
Install
$.cookies.set('sample', 'Cookies_Value');
Receive
$.cookies.get('sample');
When accessing the application on the device, I cannot set and receive cookie values. Is there any other way to store cookies on the device?
source share