[jQuery] Traversing the DOM

[jQuery] Traversing the DOM


How would one get all

s that are children of #bodyCopy, but not the
first

/child?
$("#bodyCopy").children("p").not:first;
Is that close?