[jQuery] Is '.children()' a destructive operation?
In other words, if I do the following:
dialog.children().remove().end().append(newContents);
...will 'newContents' be appended to 'dialog' or to each of the
elements matching 'dialog.children()'?
coyote