Skip to content

Instantly share code, notes, and snippets.

@olvado
Created October 25, 2010 14:35
Show Gist options
  • Save olvado/645052 to your computer and use it in GitHub Desktop.
Save olvado/645052 to your computer and use it in GitHub Desktop.
An example of using Modernizr in JavaScript
if (Modernizr.localstorage) {
localStorage.setValue('my_key','my_value')
} else {
document.cookie = 'my_key=my_value; expires=Thu, 2 Aug 2011 21:40:00 UTC; path=/'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment