Similar question from How do I bind event to sessionStorage?
Is there anyway to only bind the session storage only without binding the local one.
$(window).bind('storage', function(e)
{
alert('change');
});
The code above seems to bind both storage (local and session)