actually i'hd saved the form data in local by using sysphus a jquery plugin and this is my code to save the form data in local storage.is it possible to retrive the all data at once using php Or jquery. can u please help me to retrive the stored data from local storage.
<script>
$(document).ready(function(){ // storing form data in local storage.
$('#formElem').sisyphus();
});
</script>
<script>
$('#formElem').submit(function() { // clearing saved data in local storage.
localStorage.clear();
});
</script>
but now i want to get all the data stored in local storage also to display.
can u please help me to display & get the data from local storage