Skip to content

Instantly share code, notes, and snippets.

@DevotionGeo
Forked from codepo8/localstorage.js
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save DevotionGeo/a24ff248f9f137968e86 to your computer and use it in GitHub Desktop.

Select an option

Save DevotionGeo/a24ff248f9f137968e86 to your computer and use it in GitHub Desktop.
<script>
<?php if(isset($_POST['sent']))){?>
var f = document.getElementById('mainform');
if(localStorage){
localStorage.setItem('state',f.innerHTML);
}
<?php }else{ ?>
if(localStorage && localStorage.getItem('state')){
f.innerHTML = localStorage.getItem('state');
}
<?php } ?>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment