Как лучше всего исключить результаты из #other_section, учитывая такую структуру?
<form> <input id=one> <div id=other_section> <input id=two> </div> </form>
Вот возможный API:
inputs = @find(":input").exclude("#other_section :input")
$(':input:not(#other_section > :input)');
пример: http://jsfiddle.net/5XCcF/
Вот мое решение:
$.fn.exclude = (selector)-> excluded_items = @end().find(selector) @filter -> !_.include(excluded_items, this)