JSFiddle - React, Tailwind, and code Playground
by steveukx
JavaScript
jQuery(window).on('storage', function(e) {
e = e.originalEvent;
alert("storage event on the window\n" +
[e.key, e.newValue, e.oldValue].join('\n'));
});
localStorage.setItem('foo', 'bar_' + Date.now());
jQuery('body').append('Current value: ' + localStorage.getItem('foo'));