Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felquis/storage
Storage HTML5
https://github.com/felquis/storage
Last synced: 1 day ago
JSON representation
Storage HTML5
- Host: GitHub
- URL: https://github.com/felquis/storage
- Owner: felquis
- Created: 2011-09-14T13:28:38.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-01-19T11:46:15.000Z (almost 12 years ago)
- Last Synced: 2024-04-10T14:04:04.267Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 119 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
# O que o plugin faz?
Este plugin serve para facilitar o uso do localStorage do HTML5,
Com este plugin você pode armazenar JSON sem nenhum dificuldade.## Como usar
Setar um registro com um determinado id.
$.storage({id : 'nome', value: 'Um nome qualquer'});Setar um resgitro com um ID automático.
```js
$.storage({valor: 'Uma string qualquer'});
```Pegar algum determinado ID
```js
$.storage({get : 'ID'});
```limpando todo o localStorage
```js
$.storage('clear');
```Removendo um determinado registro
```js
$.storage({remove : 'ID'});
```## Licensa
Use isso em tudo o que você achar necessário, só não retire o link para o repositório que esta no source.=D