Re: [jQuery] How to Keep Sessions?

2007-03-13 Thread Nathaniel See
Be sure that you are using the exact same address that was used to start the session to make your ajax calls. ie www vs non-www...I ran into this problem before and that was the cause. JQuery - SimDigital wrote: > Every time i call by Ajax mode a script, that lost the session data. > It will be

Re: [jQuery] taconite question

2007-02-28 Thread Nathaniel See
I use Taconite quite a bit for combining multiple ajax calls into a single one. Is there a reason why you couldn't combine the Load function that takes place after the initial and instead use Taconite to have that take place during the initial call. Load() just replaces the contents of an eleme

Re: [jQuery] In place editor for jQuery 1.1

2007-01-17 Thread Nathaniel See
Looks good FF2.0.0.1, IE 6 On winXP SP2. Very nice. Mika Tuupola wrote: > I just released new version of jEditable plugin which works with > jQuery 1.1. I would appreciate feedback from people using Windows > browsers. Download [1] and test [2] links below: > > [1] http://www.appelsiini.net/~t

Re: [jQuery] 1 Function, Multiple Events?

2007-01-11 Thread Nathaniel See
Thanks, the $("p").one was just a generic example. I plan to reassign the click function on the callback from an ajax request. Thus, this should prevent them from firing a second request while the first is out. Or, would this be better handled by setting a global var, let's say "ready=1" on pag

Re: [jQuery] 1 Function, Multiple Events?

2007-01-11 Thread Nathaniel See
Thanks for the assistance. Yes, I was basically trying to assign a click and dblclick to the same function (to prevent users from double-clicking and firing the func twice). However, after looking into it a bit more, i think that the $("p").one("click", fun.is a better fit here. > I don't