Код: Выделить всё
addEvent(window, 'storage', function (event){
if (event.key == 'storage-event-test'){
output.innerHTML = event.newValue;
}
});
addEvent(dataInput, 'keyup', function (){
localStorage.setItem('storage-event-test', this.value);
});
Подробнее здесь: https://stackoverflow.com/questions/932 ... unction-do