[jQuery] Re: Accessing height attribute in

2007-11-03 Thread Richard D. Worth
even better: var myHeight = $(this).height(); - Richard On Nov 3, 2007 10:14 AM, Richard D. Worth <[EMAIL PROTECTED]> wrote: > I think you want > > var myHeight = $(this).attr("height"); // attr is method of jQuery object. > Wrap this first > > - Richard > > > On Nov 3, 2007 8:26 AM, [EMAIL PRO

[jQuery] Re: Accessing height attribute in

2007-11-03 Thread Richard D. Worth
I think you want var myHeight = $(this).attr("height"); // attr is method of jQuery object. Wrap this first - Richard On Nov 3, 2007 8:26 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi, > > I'd like to retrieve the value of Height attribute in the following > code(taken from Thickbox):