$('#foo input');
$('#foo').find('input');
Both I believe get only the inputs straight descendant to #foo (ie. only the inputs nested immediately within foo). How can I get all the inputs, no matter how deeply nested in #foo?
Edit: Bah, this works. Sloppy me. Need coffee. Thank you all.