Here we are going to save textbox information as the user puts it in. We are also going to recall this information in the document load function.
Saving the data:
In your textbox set the On Change action to Run Javascript and use the following code:
localStorage.setItem('myName',$('#m1-yourForm-textField1').val());
That going to save the text entered into the textbox into local storage as ‘myname’
In your document load function we are going to recall the information and send it back into the textbox.:
$('#m1-yourForm-textField1').val(localStorage.getItem('myName'));
Thats it, should now have a autosave and recall for your textbox.