hi. just having a problem here.
i'm doing the UI of a web-based app using jquery, css.
there's a shopping a cart, and i want to store the selected items in the session, i used jquery.session plugin.
e.g. var $.session("var1","item1");
What i want is to dynamically store items into dynamically named variables.
how could i do that?
thank...
I am using jQuery session in my master page. Anything I'm missing?
Code:
<script type="text/javascript" language="javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.session("lnkID","A1")
});
</script>
Error:
Microsoft JScript runtime error: Object doesn...
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 ...