different values of a django session variable in different tabs
Consider the following scenario: User searches for something and a list (request.session['List']) is created User can filter this list via an ajax call Now the user opens up a new tab, does another search, so now the session variable List is set to the new list for the other search User goes back to the first tab and filters the results again. This time, the filter results come from the new list in the other tab as the session variable has changed Is there a way to set different values for a session variable for different tabs? or any other solution for this problem? maulik13 There is no easy