[jQuery] Re: [ANOUNNCE] Comet

2008-01-09 Thread Peter E Higgins
On Tuesday 08 January 2008, Morgan Allen wrote: > I have been working on implementing the Bayeux protocol in jQuery and with > the recent talk on the list about LIVE ajax and server pushing I thought > now would be a good time to release the early work and start getting some > feedback. It will wo

[jQuery] Re: LIVE jQuery

2008-01-07 Thread Peter E Higgins
lity - i use the python/twistd variant, which coincidentally has the magnet demo included, and a few others. Regards, Peter Higgins > > On Jan 7, 8:07 am, Peter E Higgins <[EMAIL PROTECTED]> wrote: > > On Monday 07 January 2008, Ariel Flesler wrote: > > > How is that

[jQuery] Re: LIVE jQuery

2008-01-07 Thread Peter E Higgins
uot;px"; var y = o.data.x +"px"; $(o.data.magnet).css({ top: y, left: x }); }); > > Ariel Flesler > > On 6 ene, 21:30, Peter E Higgins <[EMAIL PROTECTED]> wrote: > > For whatever reason the "magnet" post didn't get pus

[jQuery] Re: LIVE jQuery

2008-01-06 Thread Peter E Higgins
For whatever reason the "magnet" post didn't get pushed to my client, but I wanted to chime in. fwiw, I have been considering porting the dojox.cometd client to jQuery-plugin-like code. but as far as I know, the only "real" javascript implementation of comet client is the dojo 1.x one. DWR

[jQuery] Re: Why is removeAttr necessary? (Instead of overwriting with attr)

2007-12-09 Thread peter e higgins
If nothing else, I can confirm being confused by alert() values versus console.* values in firebug. weird race condition? clobbered objects? something is going on. Please do not feel insane, I've seen this too :) Regards. On Sunday 09 December 2007, Kim Johnson wrote: > Hi John, > > After d

[jQuery] Re: [BUG-1.2.1] css("...",function(){ return ...;})

2007-11-13 Thread Peter E Higgins
On Tuesday 13 November 2007 12:54, Matt Kruse wrote: > On Nov 12, 5:45 pm, Peter E Higgins <[EMAIL PROTECTED]> wrote: > > On Tuesday 13 November 2007 11:26, XASD wrote: > > > function in place of value for property dosen't work. > > Is it expected to? prob

[jQuery] Re: [BUG-1.2.1] css("...",function(){ return ...;})

2007-11-13 Thread Peter E Higgins
On Tuesday 13 November 2007 11:26, XASD wrote: > function in place of value for property dosen't work. > > Thanks. try using a closure? $('#foo').css("borderTop",(function(){ return "5px"; })()); eg: return the string rather than an actual anon function pointer (as in the subject)

[jQuery] Re: Toggle visibility.

2007-11-09 Thread peter e higgins
On Thursday 08 November 2007 19:06, shapper wrote: > Hello, > > I have an anchor on my page. > When I click it I want to Toggle the visibility of a Div with ID = > "Content". my jQuery foo is lacking, but something along these lines should do it: $('a.mylink').click(function(){ var visi