[jQuery] can not access elements' properties any more?

[jQuery] can not access elements' properties any more?

But I'm sure your real question is, why is this inside each() not the
same as this inside after() :)
Inside the after() method, this refers to the this variable from the
containing block, which is your function.
The each() method takes a function and - according to the comment in the
source :) - executes the function within the context of each element,
therefore this inside .each(function() {... refers to each DOM node you
found with $() one by one.
Hope that was understandable, hum, not so easy to explain this... :)
Cheers,
Holger
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/