Created
September 15, 2016 15:56
-
-
Save gunesacar/b66fd9b4f0ac0548e70c8b5442ec9437 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>localStorage example</title> | |
<script type="application/javascript"> | |
function set_ls() { | |
setTimeout(function(){ localStorage['frameId'] = 'ABCDEF0123456789'; }, 3000); | |
} | |
</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