I need to share Cookie
value among different tabs of browser (same application). I worked around and found that other tab can only use cookie, set by 1st tab, if 2nd tab is refreshed. But in my case, i can't afford refreshing tab (& i can't use sessions). Is there any way to share cookie other way? (i.e, soon as cookie is set on one tab, the other tab can use it, without need to being refreshed)
Another post at SO said, one must continuesly poll cookie, in order to share
. but i couldn't understand, what they mean by poll
. can this poll thing help in my case?