[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-15 Thread John Resig
Donald - It looks like a bug has been filed here: http://dev.jquery.com/ticket/3837 Checking in to it - thanks! --John On Tue, Jan 13, 2009 at 4:21 PM, Donald @ White Whale wrote: > > Okay, so I was right the first time. It does occur in 1.3rc2, but not > 1.3b2. My confusion comes from the

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-13 Thread Iraê
Could it be related to this bugfix? http://groups.google.com/group/jquery-dev/browse_thread/thread/30ea94cfd730ecdb/319c0d2d2f65063b?hl=en&lnk=gst&q=positive+lookahead#319c0d2d2f65063b On Tue, Jan 13, 2009 at 7:21 PM, Donald @ White Whale < donaldwhitewh...@gmail.com> wrote: > > Okay, so I was

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-13 Thread Donald @ White Whale
Okay, so I was right the first time. It does occur in 1.3rc2, but not 1.3b2. My confusion comes from the page content changing -- I'd assumed that the bug came from something in my JS, not in the (dynamically generated) HTML. The bug down to a complex (but not invalid, as far as I know) selector:

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-13 Thread Donald @ White Whale
Sorry, I take that back -- the loop occurs in 1.3b2 as well, it must be a change made locally within the past several hours. I'll update if I sort it out. D On Jan 13, 12:15 pm, "Donald @ White Whale" wrote: > John, > > On a page in a webapp I'm working on I get a infinite* loop at line > 1769:

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-13 Thread Donald @ White Whale
John, On a page in a webapp I'm working on I get a infinite* loop at line 1769: for ( var i = 0; !curLoop[i]; i++ ){} in Firefox 3. WebKit does not have the same error. Same page worked fine in 1.2.6 and in 1.3b2. I'll try to get a reduction/testcase later on tonight (working under a deadline ri

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-13 Thread Briz
Yes! Thanks, John. _ Brad Brizendine CTO, Glyphix http://www.glyphix.com/ On Tue, Jan 13, 2009 at 7:53 AM, John Resig wrote: > > I've fixed both of these issues. > > Attributes spacing: > > http://github.com/jeresig/sizzle/commit/edac9ac5eab8f5ff61f68315a7638

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-13 Thread John Resig
I've fixed both of these issues. Attributes spacing: http://github.com/jeresig/sizzle/commit/edac9ac5eab8f5ff61f68315a7638c55205f5682 XML Errors in IE: http://github.com/jeresig/sizzle/commit/010bb7c6c508ef56118c0d06c90cc82fb831ad6b Should be merged into jQuery core momentarily. --John On M

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-13 Thread Paul Bakaus
On Tue, Jan 13, 2009 at 2:49 AM, dbergey wrote: > > jQuery UI 1.6rc4 isn't working properly with jQuery 1.3rc2 in Safari 3 > & Firefox 3 (haven't tested IE). I'm not sure whether it's 1.3's > fault, or whether UI just needs to be updated for it. I have an > example page here: > > > http://danielb

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread Iraê
> i dont see how it can work like livequery I ment how you use it, not how it functions internaly. Both of them receive 2 params, eventType and callbackFunction. I just wanted to point out that anyone familiar with $(sel).livequery(type,fn) shoud be confortable with $(sel).live(type,fn). Sorry fo

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread dbergey
jQuery UI 1.6rc4 isn't working properly with jQuery 1.3rc2 in Safari 3 & Firefox 3 (haven't tested IE). I'm not sure whether it's 1.3's fault, or whether UI just needs to be updated for it. I have an example page here: http://danielbergey.com/jquery/jquery_droppable_bug_broken_using_13rc

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread John Resig
> the only way to delegate without specifying a container would probably > be to implicitly bind any event handlers to or , is that > what happens in $.live? Yes. .live() binds on document and captures bubbled events. --John --~--~-~--~~~---~--~~ You received th

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread Leeoniya
i dont see how it can work like livequery, since all livequery seems to do is bind on a timer. delegation requires binding to a parent container and filtering out events/element targets. something like Ariel's $.listen was $("#container").listen("click", "p, span", function(e){alert("callback")})

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread Iraê
AFAIK there is no docs yet, but I learned a lot from the sourcecode, as aways. One featured that I'm already using is the event delegation functions. They are similar to the functionality provided by the widely known livequery plugin. jQuery.live(type, fn) is ment to be similar to jQuery.livequer

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread Leeoniya
if anyone has stumbled upon a link to the new v1.3 API doc, s/he will be rewarded with royalty-free bug reports... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, sen

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread John Resig
> Another one: http://jquery.glyphix.com/1.3/ > In ie7, I get: > > Line 2159: "object doesn't support this property or method" > Line 29: "object doesn't support this property or method" Hmm, ok - this is due to expandos being assigned to an XML node. I'll check in to this. Thanks for the test ca

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread Briz
Another one: http://jquery.glyphix.com/1.3/ In ie7, I get: - Line 2159: "object doesn't support this property or method" - Line 29: "object doesn't support this property or method" Everything's working great in FF (as long as there are no spaces in attribute selectors). I updated my test p

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread malsup
> jQuery 1.3rc2 is ready. It certainly is! It's rockin' for me - all my plugins are running w/o a hitch. Great work, everybody! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to

[jquery-dev] Re: jQuery 1.3rc2 Ready

2009-01-12 Thread Leeoniya
everything's working for me now, as of RC2. i'll get busy porting my whole webapp to v1.3, but if you want any kind of decent bug reports, it would be nice to know where and how to use all the new functionality introduced, any place to see an updated API doc before final release? otherwise all u'