jQuery Plugin: From - Filtering A Collection Based On Ancestors

Posted October 12, 2009 at 9:07 PM

Tags: Javascript / DHTML

I was playing around with a customized version of jQuery's live() method when it occurred to me that being able to filter a given jQuery collection based on a set of potential ancestors might make a useful plugin. And so, I came up with the from() plugin. From() takes a collection target ancestors and filters the existing stack down to only those elements that are descendants of the given ancestor pool:

 Launch code in new window » Download code as text file »

  • $( "..." ).from( "#some-element" )

Before we look at how this plugin works, let's take a look at an example to see how it might be used:

 Launch code in new window » Download code as text file »

  • <!DOCTYPE HTML>
  • <html>
  • <head>
  • <title>Filtering A jQuery Collection Based On Ancestors</title>
  • <script type="text/javascript" src="jquery-1.3.2.js"></script>
  • <script type="text/javascript" src="jquery.from.js"></script>
  • <script type="text/javascript">
  •  
  • // When the DOM is ready, run scripts.
  • $(function(){
  •  
  • $( "li" )
  • .css( "font-style", "italic" )
  • .from( "#list-two" )
  • .css( "background-color", "gold" )
  • .end()
  • .css( "font-weight", "bold" )
  • ;
  •  
  • });
  •  
  • </script>
  • </head>
  • <body>
  •  
  • <h1>
  • Filtering A jQuery Collection Based On Ancestors
  • </h1>
  •  
  • <ul id="list-one">
  • <li>
  • This is a list element.
  • </li>
  • <li>
  • This is a list element.
  • </li>
  • </ul>
  •  
  • <ul id="list-two">
  • <li>
  • This is a list element.
  • </li>
  • <li>
  • This is a list element.
  • </li>
  • </ul>
  •  
  • </body>
  • </html>

As you can see, once the DOM is ready to be interacted with, we use jQuery to grab all the list item elements and immediately make them italic. Then, will filter that collection down to only those list item elements that are descendants of the list with id, "list-two." Those items are given a gold background. Then, using the end() method, we travel back up the collection stack, and make all list item elements bold. Running the above code, we get the following output:

 
 
 
 
 
 
From() - A jQuery Plugin To Filter A Collection Based On Potential Ancestors. 
 
 
 

As you can see, the from() execution filtered the list items collection down to only those that were in the second list. As such, only the latter two items have a gold background.

Now, Let's take a look at the code that powers this plugin:

jquery.from.js

 Launch code in new window » Download code as text file »

  • // Create a self-executing function closure so that we map the
  • // jQuery library to the $ variable without any global conflicts.
  • (function( $ ){
  •  
  • // This plugin will filter the current collection down to the
  • // items that are descendants of the given collection of
  • // potential ancestors.
  • $.fn.from = function( ancestors ){
  • // Make sure the ancestors object is a jQuery collection.
  • // This will work for a selector or an existing jQuery
  • // collection.
  • ancestors = jQuery( ancestors );
  •  
  • // We want to filter the list of items down to the
  • // descendants of the given ancestor collection. For this,
  • // we will need to examine each item individually.
  • return (
  • this.filter(
  • function(){
  • // Get the complete list of ancestors of the
  • // current item.
  • var myAncestors = $( this ).parents();
  •  
  • // Travel up the ancestor chain to see if any
  • // of the nodes is in the collection of target
  • // ancestors.
  • for (var i = 0 ; i < myAncestors.size() ; i++){
  •  
  • // If the current ancestor is in the target
  • // collection, return TRUE and the current
  • // node will be included by Filter().
  • if (ancestors.index( myAncestors[ i ] ) >= 0){
  • return( true );
  • }
  •  
  • }
  •  
  • // If we made it this far, then none of the
  • // current node's ancestors was in the
  • // collection of parent nodes.
  • return( false );
  • }
  • )
  • );
  • }
  •  
  • })( jQuery );

The magic behind this plugin is the fact that jQuery's filter() method can take a function for use in the filtering logic. Not only does this allow us to filter one element at a time, but, by using the filter() method, jQuery maintains the collection stack internally, allowing us to use the end() method to move back up the stack when necessary.

Anyway, just a small jQuery plugin, but I think it will make some of the other plugins that I am tinkering with easier to write.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Other Searches  |  Print Page





Reader Comments

Oct 13, 2009 at 1:53 PM // reply »
13 Comments

Ben, looks useful. One suggestion though, I'd love to see your code include a private from method that both $.fn.from and $.expr[':'].from utilize. That way you could use from as both a method and a psuedo-selector!


Oct 13, 2009 at 2:31 PM // reply »
7,572 Comments

@Ben,

Ahh, very cool idea! You are the plugin master :) Let me see what I can do.


Oct 13, 2009 at 4:03 PM // reply »
2 Comments

Hate to be the noob here, but why don't you use .foreach() instead of the for loop in your code? Is it to do with performance or something obvious I'm not seeing?


Oct 13, 2009 at 4:05 PM // reply »
7,572 Comments

@Ettiene,

Yeah, exactly. Since it's being used inside of a plugin, I figured I would opt for the slightly more performant native loop rather than use the each() iterator.


Oct 13, 2009 at 4:08 PM // reply »
2 Comments

Thanks for the quick answer, and yeah I also meant the .each() iterator :)

Your jQuery tutorial got me hooked on jQuery, even though I'm still learning. Keep up the good work!


Oct 13, 2009 at 4:11 PM // reply »
7,572 Comments

@Ettiene,

No problem my man. Glad you like. Normally, I would just have used each(); but, my concern was that the filter() method might have to turn around and run this against a large number of comparisons - NxM - and I just panicked and wanted it to be as fast as possible.


Nov 13, 2009 at 1:55 PM // reply »
10 Comments

woot! this plugin of yours (and you) got a mention in the first official jquery podcast!

http://blog.jquery.com/2009/11/13/announcing-the-official-jquery-podcast/

(in 'this week in jquery' section on the above page and around 1:11 in the podcast)

congrats, Ben!


Nov 15, 2009 at 7:16 PM // reply »
7,572 Comments

@Azadi,

Oh bad ass! I'll have to listen to that ASAP! Thanks for letting me know.


Post Comment  |  Ask Ben

Recent Blog Comments
Mar 20, 2010 at 12:07 PM
Drawing On The iPhone Canvas With jQuery And ColdFusion
Simply awesome. Saved my day. ... read »
Mar 20, 2010 at 9:00 AM
Building A Fixed-Position Bottom Menu Bar (ala FaceBook)
I would like to say thx for an easy way to create a bottom bar. I do have a ?. Is it possible to center the bar if i want to resize it to ex 85%. Regards Offenbach ... read »
Mar 19, 2010 at 7:26 PM
MySQL 3/4 - com.mysql.jdbc.Driver And allowMultiQueries=true
Thank you very much for this post. Adding allowMultiQueries="true" in context.xml didn't help until I added it to url as allowMultiQueries=true Good idea is to use prepared statements and it will he ... read »
Jim
Mar 19, 2010 at 4:49 PM
Nobody Puts Baby In The Corner!
Wow. This is like suddenly finding a support group for your secret shame. I'm not alone! I always liked this movie, even though it is extremely cheesy. I just wish Jennifer Grey hadn't gotten the ... read »
Mar 19, 2010 at 4:47 PM
Application.cfc OnRequest() Method Affects OnError() Arguments
@Jason and @Ben, I've been doing some CF9 refactoring on our systems and noticed an odd occurrence with onError as well. Found a way to work around my problem, but what I saw was... Background: Our ... read »
Jim
Mar 19, 2010 at 4:44 PM
Shoot 'Em Up Starring Clive Owen And Paul Giamatti
I actually enjoyed this movie quite a lot. It was different, certainly, but I think they were going for more of a Quentin Tarentino-"wow, that was weird"-vibe than an actual spoof. Once I realize ... read »
Mar 19, 2010 at 4:34 PM
An Intensive Exploration Of jQuery With Ben Nadel (Video Presentation)
Hey I guess the video is down. Is there anyway you can upload to youtube or vimeo or some other service? Greatly appreciated. ... read »
Mar 19, 2010 at 4:24 PM
ColdFusion CFPOP - My First Look
@Ben Thanks for the follow up! The root of the problem had to do with being able to trace bounced emails to specific records in a DB table. Let's say you run an email campaign and you get 1,000 bou ... read »