I\'m trying to create a simple proof-of-concept regarding the use of localStorage to trigger tabs in my application when changes occur. I know this is possible based on other a
In order for the window.addEventListener
to work on storage
:
you MUST access the page using web-server (http://a.b.c.d/
or http://domain
)
file:///
or c:\file.html
will not work.I would consider also removing the 3rd, it is not relevant to elements in your DOM
tree, and it might cause troubles (let the browser have it's defaults).
This code was tested in Chrome 52, Firefox 47+48, IE 11, Safari 5.7.1
Tab1