Bah I'm such a tool, thanks the reply, its one of those days! J
On Aug 27, 2:16 pm, MorningZ <[EMAIL PROTECTED]> wrote: > Right from the Docshttp://docs.jquery.com/Core/each > > "This means that every time the passed-in function is executed (which > is once for every element matched) the 'this' keyword points to the > specific DOM element" > > so it should be > > $('.box').each(function(){ > console.log( $(this).height() ); > > }); > > and that "this.height is not a function" error will go away....