1

I am stroring the selected link id in the session. I want to read this session after page gets opened to hi-light that link. But the session gets cleared.

Code:

      $("div.menu_body a").click(function() {               
            $.session("ActiveLink", "#A3");
            alert($.session("ActiveLink"));---------> Has id                        

      });
    alert($.session("ActiveLink"));-----------> Undefiened  

Problem: i am not getting this session value outside that event.

Geetha

Geeth
  • 5,282
  • 21
  • 82
  • 133

1 Answers1

0

Vars are lost in the page is open in another window or tab. - Objects with functions can't be stored - Window.name is lost - Only Strings can be stored

Biju
  • 16