[jQuery] Re: Updated API browser

2008-02-13 Thread Joel Stein
I think the only thing I'd like to see on this is a way to see all method. Perhaps by default, everything shows, and when searching, it refines the search? Or maybe a * could search for everything...

[jQuery] Re: Binding "this" inside anonymous functions

2007-12-18 Thread Joel Stein
Thanks, Jonathan.

[jQuery] Re: Binding "this" inside anonymous functions

2007-12-18 Thread Joel Stein
> Also you might want to do "var a = this" so that it doesn't conflict with any > global variables. Thanks, Josh. That's what I suspected. As far as the "var a = this"... is that because using "var" to declare the variable makes its scope within the function alone, or is the "var" unnecessary?

[jQuery] Binding "this" inside anonymous functions

2007-12-17 Thread Joel Stein
Hey, jQuery community. I've used MooTools for about a year now, and am experimenting with jQuery to see if I want to convert or not. So far it's great, and I especially enjoy how easy it is to "find things." Here's my first question, though, where MooTools offers a solution that I haven't found