Created
October 5, 2011 07:42
-
-
Save FlorianX/1263876 to your computer and use it in GitHub Desktop.
Daten aus dem Storage holen
This file contains 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
// check if localStorage is available | |
if(typeof localStorage !== 'undefined'){ | |
// get the saved data if it's available | |
var localNewsJSON = localStorage.getItem('SpiritNews'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment