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'))