I'm curious why this code is invalid:
$.each( $("p") ).css("color", "green");
While this code works fine:
$.each($("p"), function() { $(this).css("color", "green") });
Is it not possible to chain elements with each?
|
I'm curious why this code is invalid:
|
|||
|
|
|
Remove the wrapper:
If you want to use
The jQuery method automatically returns an instance of the collection, so chaining should still be possible. Demo: http://jsfiddle.net/pC2Bj/ See also:
|
||||
|
|
http://api.jquery.com/jquery.each/
Yes, it is possible to chain, since
|
||||
|
No, it's not possible like that. Here's an existing SO discussion about this: jQuery .animate/.each chaining |
|||
|
|
|
Also, |
|||
|
|