gets JSON data from the storage
name | string | the data key |
object | a data item from the storage associated with the key or null |
var weather = webix.storage.cookie.get('weather');
The cookie string is returned unescaped and parsed to a JSON object. If you need to get the escaped raw string, use the getRaw method.
Back to top