Your Internet Explorer version is not compatible with our shopping cart system. Please use version 9 or higher to avoid problems with your order(s). Close
I built a page that has a form for users to fill out with emergency contact information and other info, yet when the app is closed the info is erased. is there a way to save this info?
You can use local storage to read and write the information.
localStorage.setItem(key','value');
so you would need something like this, note this is off the top of my head and not tested.
//Save Info
localStorage.setItem('firstName',$('#m1-formname-fieldName').val());
//Get info
$('#m1-formname-fieldName').val(localStorage.getItem('firstName'))