Skip to content

Instantly share code, notes, and snippets.

@robin-drexler
Last active August 29, 2015 14:24
Show Gist options
  • Save robin-drexler/e348376bc51be0a9cad3 to your computer and use it in GitHub Desktop.
Save robin-drexler/e348376bc51be0a9cad3 to your computer and use it in GitHub Desktop.
<html>
<body>
<span>LocalStorage: </span>
<span id="localstorage-info" style="font-weight: bold"></span>
<script type="text/javascript">
var localStorageInfoElement = document.querySelector('#localstorage-info')
try {
window.localStorage.setItem('moep', true);
localStorageInfoElement.textContent = 'Yep! :)';
} catch(e) {
localStorageInfoElement.textContent = 'Nope! :(';
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment