Thanks for the confirm Richard...and I assume that all 3 of those would be var'd because they're on the same line?
On Sep 1, 10:32 am, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > On 9/1/07, Andy Matthews <[EMAIL PROTECTED]> wrote: > > > > > Hang on...now that I look at it, I think I understand #4. Is this > > line: > > > var $this = $(this), size = $this.attr('href'), toggle = $('.' + > > size); > > > the same as these lines: > > var $this = $(this) > > var size = $this.attr('href') > > var toggle = $('.' + size); > > > ? > > Yes. You've got it. > > - Richard