[jquery-dev] Re: Testing for jQuery Plugins?

2009-09-15 Thread Ralph Whitbeck
*You could temporarily expose your privates ;)* I LOL'd at that line. On Tue, Sep 8, 2009 at 1:15 PM, Mark Gibson wrote: > > You could temporarily expose your privates ;) > > (function($) { > > function doStuff() { ... }; > > /* > window.FORTESTINGONLY = { > doStuff: doStuff > }; > */ > > })(j

[jquery-dev] Re: When is the next version of jquery coming out?

2009-09-15 Thread Ralph Whitbeck
Thanks for your e-mail. It was announced at jQuery Conference on Sunday that 1.3.3 is only a couple of weeks away from release and it is true it will have better live support. >From another message in the jQuery-dev list blur and focus have landed in trunk and submit is in the works. Keep an eye

[jquery-dev] Re: jquery plugin update manager

2009-09-15 Thread Ralph Whitbeck
Phill, Thanks for the suggestion. At this weekends jQuery Conference it was announced that the plugin repository was a top priority in terms of getting redone. Some features the new site will have is: - Site will be simplistic in terms that it'll be a search engine and index plugins that are su

[jquery-dev] Re: Event Delegation

2009-09-15 Thread tres
Hey Justin, Focus/blur event delegation has landed in trunk. Just as an outside perspective, you can check out what i've used for focus/blur delegation here: http://code.google.com/p/jquery-plugin-dev/source/browse/trunk/jquery.bond.js. Cheers, Trey On Sep 15, 2:31 pm, Justin Meyer wrote: > T

[jquery-dev] Re: QUnit to check for globals

2009-09-15 Thread John Resig
I had to revert the change - it was causing problems in the suite - specifically Opera was failing across the board (anything with an id was being added as global variable - which caused a conflict on nearly every test) - perhaps we could avoid this one? --John On Tue, Sep 15, 2009 at 4:45 PM, J

[jquery-dev] Re: Javascript syntax oddity

2009-09-15 Thread Andrea Giammarchi
This is the "error", IE threat everything as my first example but you assign to a variable which is performed after the function expression. or you return the current function. Try this: var slice = (function($slice){ setTimeout(function(){alert(slice)}); // guess which one will be in IE /

[jquery-dev] Re: Javascript syntax oddity

2009-09-15 Thread Michael Geary
On Tue, Sep 15, 2009 at 1:27 AM, Andrea Giammarchi < andrea.giammar...@gmail.com> wrote: > > @Michael Geary, it seems you never have to debug your code, do you? It is a > good practice to name functions 'cause thousands of "anonymous" error are > quite meaningless. My example is a de-facto behavio

[jquery-dev] QUnit to check for globals

2009-09-15 Thread Jörn Zaefferer
Hi, QUnit had a feature "noglobals" for some time now, to check for global variables that are introduced by code a runtime. This is very useful to find bugs like missing var-keywords. Though so far the feature had to be manually enabled by putting "?noglobals" in the URL to the testsuite. I've c

[jquery-dev] jquery plugin update manager

2009-09-15 Thread Phill Pafford
Hi All, Would like to purpose a standard way for identifying Plugin Version(s), Authors, Update URL(s), etc... wordpress offer this to users and would greatly benefit jQuery and Plugin development if some sort of standard was implemented. With Wordpress I can see what plugins offer updates from

[jquery-dev] Re: Javascript syntax oddity

2009-09-15 Thread Rick Waldron
You're quite welcome. On Tue, Sep 15, 2009 at 12:05 PM, Andrea Giammarchi < andrea.giammar...@gmail.com> wrote: > It would be about the time, thanks for the quick news :-) > > On Tue, Sep 15, 2009 at 4:37 PM, Rick Waldron wrote: > >> @Andrea >> >> Al MacDonald (http://hyper-metrix.com) and I have

[jquery-dev] Re: Javascript syntax oddity

2009-09-15 Thread Andrea Giammarchi
It would be about the time, thanks for the quick news :-) On Tue, Sep 15, 2009 at 4:37 PM, Rick Waldron wrote: > @Andrea > > Al MacDonald (http://hyper-metrix.com) and I have discussed theoretical > IE9 on several occasions... He's even poked the IE devs at microsoft over IM > for details and wha

[jquery-dev] Re: Javascript syntax oddity

2009-09-15 Thread Rick Waldron
@Andrea Al MacDonald (http://hyper-metrix.com) and I have discussed theoretical IE9 on several occasions... He's even poked the IE devs at microsoft over IM for details and what he's come up with isn't much but does lead one to believe that they might be listening finally. Rick On Mon, Sep 14,

[jquery-dev] Re: Are jQuery nightlies intentionally pinned to r6529

2009-09-15 Thread Brandon Aaron
Sometimes the nightly script can be flaky and fall behind. -- Brandon Aaron On Tue, Sep 15, 2009 at 8:07 AM, mharen wrote: > > The current nightly from http://code.jquery.com/jquery-nightly.js is > old. Is it intentionally pinned to r6529/2008-08-10? > > /*! >  * jQuery JavaScript Library v1.3

[jquery-dev] Re: Are jQuery nightlies intentionally pinned to r6529

2009-09-15 Thread Elijah Insua
looks like 2009-08-10 17:22:31 to me On Tue, Sep 15, 2009 at 8:07 AM, mharen wrote: > > The current nightly from http://code.jquery.com/jquery-nightly.js is > old. Is it intentionally pinned to r6529/2008-08-10? > > /*! > * jQuery JavaScript Library v1.3.3pre > * http://jquery.com/ > * > * C

[jquery-dev] Jquery document .ready function throwing object expected

2009-09-15 Thread Vardhini
Hi, I'm getting Javascript error "object expected"on PageLoad at the following line: $(document).ready(function() I found that alert(typeof $); is returing undefined. Below is the code snippet:

[jquery-dev] Re: cross browser compatibility problem

2009-09-15 Thread Philipp Paul
It doesn't work in Opera as well.. But using Dragonfly made me find some strange Markup.. It seems you haven't closed your -tag for the stylesheet.. which makes the

[jquery-dev] Are jQuery nightlies intentionally pinned to r6529

2009-09-15 Thread mharen
The current nightly from http://code.jquery.com/jquery-nightly.js is old. Is it intentionally pinned to r6529/2008-08-10? /*! * jQuery JavaScript Library v1.3.3pre * http://jquery.com/ * * Copyright (c) 2009 John Resig * Dual licensed under the MIT and GPL licenses. * http://docs.jquery.com

[jquery-dev] Re: cross browser compatibility problem

2009-09-15 Thread Gopinath
Hi Please send me the files & I will check it Thanks & Regards Gopinath On Sep 15, 3:44 am, Murali Nandigama wrote: > Please have a look at the following URL > > http://people.mozilla.com/~mnandigama/dashboard.html > > This page has Three DIVs , one for left navigation bar, one for the > verti

[jquery-dev] Re: Javascript syntax oddity

2009-09-15 Thread Andrea Giammarchi
On Tue, Sep 15, 2009 at 12:21 AM, kangax wrote: > > You must be joking :) not really :) > How is this to "avoid any kind of problem" when > you base your code on unspecified, non-standard and generally known to > be quirky behavior? the same way we all use innerHTML :P > here's a quote