We have two pages \"/read\" and \"/write\". Page \"/write\" each second updates localStorage with current time:
setInterval(function(){
var time = (new
It seems that the localStorage.GetItem method under IE11 / Windows 8 is unreliable and may retrieve previous values. But this can be worked around by calling the localStorage.SetItem method immediately before retrieving a value.
I managed to replicate the issue using muttonUp's code and then made the following change to get the two windows talking to each other:
LocalStorage Test