Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var hasStorage = (function() {
- try {
- window.localStorage.setItem('tabTest', 'tabTest');
- window.localStorage.removeItem('tabTest');
- return true;
- } catch (exception) {
- return false;
- }
- }());
- //удаление элемента
- function removeStorage(name) {
- if (hasStorage) {
- window.localStorage.removeItem(name);
- }
- }
- //сохранение элемента
- function setStorage(name, value) {
- if (hasStorage) {
- window.localStorage.setItem(name, value);
- }
- }
- //получение элемента
- function getStorage(name) {
- if (hasStorage) {
- var value = window.localStorage.getItem(name);
- return value;
- }
- return '';
- }
Advertisement
Add Comment
Please, Sign In to add comment