Side navigation
#10543 closed enhancement (plugin)
Opened October 20, 2011 02:22PM UTC
Closed October 20, 2011 09:12PM UTC
findChildren (opposite of closest)
Reported by: | mp@power-of-m.de | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I had to use a function which looks up an element matched by an expression inside a targetElement.
So something like the opposite of closest().
Because i did not find a function for that in the jQuery-Framework i wrote some snippet my self:
jquerySorter = {
findChildren: function(start, match){
if(!$(start).children(match)[0]){
return jquerySorter.findChildren($(start).children('*'), match);
} else {
return $(start).children(match);
}
}
}
This is a Part of the complete SortingPlugin i wrote.
I hope this helps to implement a function which is like the opposite of closest, because i think lots of poeple need this.
regards
Mark Paspirgilis
Attachments (0)
Change History (1)
Changed October 20, 2011 09:12PM UTC by comment:1
resolution: | → plugin |
---|---|
status: | new → closed |
This doesn't seem common enough to put into core, but can easily be done inline or via a plugin.