Skip to content

Instantly share code, notes, and snippets.

<!doctype html>
<html>
<head>
<title>localStorage example</title>
<script type="application/javascript">
function set_ls() {
localStorage['ab'] = 'ab'; // doesn't contain enough entropy
}
</script>
</head>
<!doctype html>
<html>
<head>
<title>localStorage example</title>
<script type="application/javascript">
function set_ls() {
localStorage['testkey'] = 'Test-0123456789';
}
</script>
</head>
<!doctype html>
<html>
<head>
<title>localStorage example</title>
<script type="application/javascript">
function set_ls() {
localStorage['frameId'] = 'ABCDEF0123456789';
}
</script>
</head>
function set_ls() {
localStorage['ghid'] = 'ABCDEF0123456789';
}
set_ls();