How best would I exclude results from #other_section, given a structure like this?
<form>
<input id=one>
<div id=other_section>
<input id=two>
</div>
</form>
Here’s a possible API:
inputs = @find(":input").exclude("#other_section :input")
example: http://jsfiddle.net/5XCcF/