[jQuery] Re: keep session alive

2009-01-14 Thread Ricardo Tomasi
You could pass all information in a hash or query string: http://www.my.com/newpage.htm?sessionstuff=1&props=234 params = location.search; but there is no native way of parsing that string. better do it JSON style: http://www.my.com/newpage.htm#{ID:23, state:'buying', accNumber: 2098432, passwo

[jQuery] Re: keep session alive

2009-01-14 Thread jQuery Lover
You could also use jquery ui tabs for your form sections (http://docs.jquery.com/UI/Tabs). Just add two buttons "proceed" and "previous" to the bottom of each tab window and you have nice looking form :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Jan 14, 2009

[jQuery] Re: keep session alive

2009-01-14 Thread Beres Botond
I don't see what this has to do with jQuery or Javascript in general. Maybe give us some more details. On Jan 14, 3:33 pm, hjorth wrote: > hi > > i got a big problem > > i need to take a session from one page and keep it alive on another > page where i have a long form. > > is this possible?