Re: [jQuery] Please wait.. tutorial

2007-01-03 Thread moe
display the popup. this should be an easy hack and you'd really do us linux users a favor. :) ~moe On Wed, Jan 03, 2007 at 12:09:54PM -0800, bander wrote: FF1.5/Linux consistently takes a little over three seconds on my computer to display the overlay, but the input elements are blocked

Re: [jQuery] Please wait.. tutorial

2007-01-02 Thread moe
). ~moe On Mon, Jan 01, 2007 at 02:29:50AM -0600, Aaron Heimlich wrote: http://www.malsup.com/jquery/block/ might interest you. Happy New Year! --Aaron On 12/31/06, Mungbeans [EMAIL PROTECTED] wrote: Does anyone know where there is a good tutorial on coding a Please wait.. sign

Re: [jQuery] Please wait.. tutorial

2007-01-02 Thread moe
On Tue, Jan 02, 2007 at 11:05:28PM -0500, Mike Alsup wrote: can anyone reproduce that? (i just clicked on some of the test-buttons, happens every time). Moe, How does your cpu do just navigating to the wait page: http://www.malsup.com/jquery/block/wait.php just normal, no spike

Re: [jQuery] Please wait.. tutorial

2007-01-02 Thread moe
there the problem was probably on my end. ;( ~moe ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] msie closures syntax

2006-12-27 Thread moe
on( mysrcid, body, x, y ) { // do stuff... } //... })(jQuery); snap as you may have guessed i'm tampering with the tooltip plugin and am probably missing something obvious... regards, moe working example quoted for reference: // // B) this works in IE // var fref

Re: [jQuery] msie closures syntax

2006-12-27 Thread moe
nice, works in all browsers, solved my immediate problem. thank you! :) On Wed, Dec 27, 2006 at 01:09:33PM +0100, Choan C. Gálvez wrote: I was intrigued by the syntax used by Moe, as I had never seen it. It's documented at http://developer.mozilla.org/en/docs/DOM:window.setTimeout, stating

Re: [jQuery] msie closures syntax

2006-12-27 Thread moe
. regards, moe -- Death before dishonor. But neither before breakfast. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] msie closures syntax

2006-12-26 Thread moe
, stuff, 1, 2 ); // // B) this works in IE // var fref = iehelper( stuff, 1, 2 ); setTimeout( fref, 100 ); function iehelper( a,b,c ) { return ( function() { doStuff( a,b,c ); }); } --snap anyone know how to feed that to ie without the nasty helper function? best regards, moe