So far, it is possible to listen to "any" change in the localStorage, like this :
document.addEventListener(
"localDataStorage"
, nowICanSeeLocalStorageChangeEvents
, false
);
But is it also possible to listen to a change of one property only ?
document.addEventListener(
"myKey"
, myKeyListener
, false
);