puts data into the storage
| name | string | the data key |
| value | object | a data item that should be associated with the specified data key |
| domain | string | optional, the cookie domain |
| expires | Date | optional, the cookie expiring time |
webix.storage.cookie.put("weather", {
temperature:23, rain:false
}, "site.com", new Date(2018, 11, 31));
Back to top