Click here to Skip to main content
15,890,186 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am Creating an android app using backbone.js and Cordova, I am saving the user data after login in Local storage as below
window.localStorage.setItem("ICID", data.ICID);
window.localStorage.setItem("IAID";, data.IAID);
window.localStorage.setItem("ialastname";, data.ialastname);
window.localStorage.setItem("afirstname";, data.iafirstname);
window.localStorage.setItem("IAPhone";, data.IAPhone);
window.localStorage.setItem("IAEmail", data.IAEmail);
window.localStorage.fax("fax";, data.fax);
and after that i am get them using the window.localStorage.getItem("IAEmai"");
but this code is working in micromax but it was not working in samsung mobiles can any one help me to get out of this issue.
Posted
Comments
Kornfeld Eliyahu Peter 28-Apr-14 10:25am    
localStorage depends on implementation. Is it possible that your Samsung device does not implements it?

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900