Hi All,
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