[jQuery] Re: Plugin's method called chained with selector or not?

2007-08-01 Thread Michael Geary
Hi Juan, You probably shouldn't be making direct calls to a $.fn.methodName() function. I'm not sure what it is you want to accomplish, but perhaps a good example would be the each function. There is a $.fn.each which is called when you use $('.foo').each(). And there is a separate $.each that

[jQuery] Re: Plugin's method called chained with selector or not?

2007-08-01 Thread Juan G. Hurtado
Hi Michael, El 01/08/2007, a las 10:26, Michael Geary escribió: You probably shouldn't be making direct calls to a $.fn.methodName () function. I'm not sure what it is you want to accomplish, but perhaps a good example would be the each function. There is a $.fn.each which is called when