[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-23 Thread Loren
l try to determine the root cause and post to the list, along with the test case. -Loren

[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Loren
for 1.2 is now in the 500 ms range. Again, thanks to the jQuery team for helping with this, and I hope this can help others with a similar problem. -Loren On Jan 22, 2:14 pm, Loren wrote: > Thank you - it would good to know if I'm the only one experiencing > this. > > My app

[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Loren
Thank you - it would good to know if I'm the only one experiencing this. My app is nearly all HTML injected, and it would be interesting to know if other highly DHTML apps are experiencing the same issue. -Loren On Jan 22, 12:54 pm, Alexsandro_xpt wrote: > Interesting your test

[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Loren West
t, and if it fails, we fail. Thank you, -Loren On Thu, Jan 22, 2009 at 5:41 AM, John Resig wrote: > > I'm not seeing this, no. Do you have a link to the app? What version > of Firebug are you using? > > --John > > On 1/22/09, Loren wrote: > > > > Hello,

[jQuery] 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Loren
ving speed problems with the new 1.3 jQuery? -Loren

[jQuery] Re: Opposite of .contains() ?

2008-01-12 Thread Loren Pipes
My pleasure. jQuery selectors have changed my life (I kid you not), definitely worth a weekend poking around! Pipes

[jQuery] Re: Opposite of .contains() ?

2008-01-11 Thread Loren Pipes
You might try something like this: $("p:not(:contains('1'))") Loren Pipes

[jQuery] Re: Is this possible with jQuery?

2007-10-02 Thread Loren Pipes
Sure, do something like this: $('#Explanation').css({ position : 'absolute', top : '720px', right : '0px', width : '10px', margin : '40px 0 0 0' }); VP

[jQuery] Re: Attr calls on jQuery object with more than one element?

2007-09-27 Thread Loren Pipes
Map is really nice for this. var attributes = $('.selected').map(function() { return $(this).attr('rel'); }); VP

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-05 Thread Loren Pipes
What you need are some t-shits! VP

[jQuery] Re: Couple of Bugs, css + jquery

2007-08-23 Thread Loren Pipes
I'd say the layout problem is the use of min-height and min-width css attributes, which IE6 does not understand. VP

[jQuery] Re: Removing an element drom children group

2007-07-13 Thread Loren Pipes
What you're most likely running into is TABLEs tend to contain a TBODY element which wraps the TRs. Try $("#table > tbody > tr:gt(0)").hide(); or something of that ilk. VP

[jQuery] Re: IE7 and jQuery Corners.....

2007-07-10 Thread Loren Pipes
This has to do with the background color of the header div/h1 being set to white, when I set them to transparent (via dev bar) the corners look fine. VP

[jQuery] Re: Binding actions after an ajax call?

2007-07-01 Thread Loren Pipes
Kinda new myself, but I believe that the load method can take a callback as the third parameter, like... $('#myDivID div.itemContent').load('/controller/action/', null, function() { $('a', $(#myDivID div.itemContent')).click(function() { do your thing return false; }) }); VP On 6/30/07, Tobias