Skip to content

Instantly share code, notes, and snippets.

@gunesacar
Created June 17, 2015 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gunesacar/3184e501d45943ec6901 to your computer and use it in GitHub Desktop.
Save gunesacar/3184e501d45943ec6901 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title>localStorage example</title>
<script type="application/javascript">
function set_ls() {
localStorage['testkey'] = 'Test-0123456789';
}
</script>
</head>
<body onload="set_ls()">
</body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment