Bug Tracker

Opened 14 years ago

Closed 14 years ago

#4945 closed enhancement (duplicate)

Enhancing "closest" method for delegation

Reported by: mike.helgeson Owned by:
Priority: minor Milestone: 1.4
Component: core Version: 1.3.2
Keywords: delegation Cc:
Blocked by: Blocking:

Description

I propose adding a second argument to the "closest" method that will act as the end point for searching up the document tree. It can behave just like the "context" argument in the jQuery mother function. It will optimize the performance of a common pattern I have seen in my own code since the addition of this method. The new usage could be as follows:

$("table").bind("click",function( event ){

var $td = $( event.target ).closest("td", event.currentTarget );

});

Because I bound the handler to "table" I do not want to search any higher than that element for selector matches. Furthermore, if there was a selector match outside of the containing element, it could potentially and accidentally be matched.

I have attached the modified method. It is a very small change, and makes "closest" even more powerful for advanced developers.

Attachments (1)

jquery.closest.js (460 bytes) - added by mike.helgeson 14 years ago.

Download all attachments as: .zip

Change History (3)

Changed 14 years ago by mike.helgeson

Attachment: jquery.closest.js added

comment:1 Changed 14 years ago by mike.helgeson

comment:2 Changed 14 years ago by joern

Resolution: duplicate
Status: newclosed
Note: See TracTickets for help on using tickets.