Ask Ben: Iterating Over An Array In jQuery, One Index Per Click

Posted January 28, 2009 at 9:04 AM

Tags: Javascript / DHTML, Ask Ben

Ben, I'm desperate. I've been all over the Internet looking for some clue how to do this: How would I use .each() with .click to have a single button that would iterate through an array, one object at a time, each time it is clicked? I tried something like:

var myarray = [(#div0),(#div1),(#div2)];
$( myarray ).each(
$("#button").click(function(){
$("#"+objValue).slide("slow");
});

But, obviously that doesn't work. I need the one button, to slide one panel at a time, per each click, in succession. Does that make sense?

When I read your question, the first thing that immediately popped into my mind was jQuery's data() method. I discovered the data() method recently and it blew my mind! If you have not seen it before, jQuery's data() method allows us to associate arbitrary data with any of our DOM elements. What I'm thinking is that if we bind an "Index" value and the actual collection of jQuery elements to our button, then we can easily iterate over the collection, one index per click:

 
 
 
 
 
 
 
 
 
 

As seen in the video, each time we click the button, a new item in our unordered list is shown (using slideDown()). The code for this is quite straightforward:

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

  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  • <html>
  • <head>
  • <title>jQuery Data Demo With Iterative Click</title>
  •  
  • <script type="text/javascript" src="jquery-1.3.1.pack.js"></script>
  • <script type="text/javascript">
  •  
  • // When the document loads, initialize the button.
  • $(
  • function(){
  • var jButton = $( "button" );
  •  
  • // First, hide all the list items.
  • $( "li" ).hide();
  •  
  • // Now, we are going to bind data to the button.
  • // This data will include the array of jQuery
  • // elements that we want to show and the index of
  • // the currently selected item.
  • jButton.data(
  • "config",
  • {
  • Index: 0,
  • Collection: $( "li" )
  • }
  • );
  •  
  • // Now that we have our data bound, let's bind
  • // the click event.
  • jButton.click(
  • function( objEvent ){
  • var jThis = $( this );
  •  
  • // Get the config data out of the button.
  • var objConfig = jThis.data( "config" );
  •  
  • // Check to see if our index it out of
  • // bounds (more items to click).
  • if (objConfig.Index < objConfig.Collection.length){
  •  
  • // Show the current item. When we are
  • // doing this, post-increment the our
  • // item index.
  • $( objConfig.Collection[ objConfig.Index++ ] ).slideDown();
  •  
  • }
  •  
  • // Prevent default event (form submit).
  • objEvent.preventDefault();
  • return( false );
  • }
  • );
  • }
  • );
  •  
  • </script>
  • </head>
  • <body>
  •  
  • <h1>
  • jQuery Data Demo With Iterative Click
  • </h1>
  •  
  • <form>
  • <button>Show List Item</button>
  • </form>
  •  
  • <ul>
  • <li>
  • I am list item One.
  • </li>
  • <li>
  • I am list item Two.
  • </li>
  • <li>
  • I am list item Three.
  • </li>
  • </ul>
  •  
  • </body>
  • </html>

As you can see in the code, we are associating a "config" structure with our DOM element, the button. Then, whenever the button is clicked, we retreive that associated "config" data and use the contained "Index" and "Collection" data as needed. jQuery is so powerful, I'd be surprised if there wasn't an even easier way to do this; but, this was the first thing that popped into my mind.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page





Reader Comments

Kevin
Jan 28, 2009 at 9:30 AM // reply »
4 Comments

You, sir, are the man. This works exactly as I had invisioned it. I'm gonna get the hang of jQuery. Some of it is actually starting to make sense. I've been doing this javascript the long way for so long, it's been difficult to adapt. But, I have to say, the sheer power of jQuery blows me away.

If I wanted to utilize more specifically the IDs of certain objects, instead of the list items, how would I do that?


Jan 28, 2009 at 9:33 AM // reply »
6,371 Comments

@Kevin,

If you wanted to use IDs, you could simply build the Collection element the same way you did in the question:

Collection: [$("#div0"), $("#div1"), $("#div2")]

The only difference now is that each element in the array contains a jQuery object. As such, when you reference later on, you wouldn't need to re-wrap it in the $() method:

$( objConfig.Collection[ objConfig.Index++ ] ).slideDown();

... vs. ...

objConfig.Collection[ objConfig.Index++ ].slideDown();

Notice that the latter does not use the $() before calling .slideDown(). This has to do with the fact that you are using a jQuery stack in the first and standard array in the second.


Kevin
Jan 28, 2009 at 9:43 AM // reply »
4 Comments

Thank you very much. I'm going to spend a lot of time on your blog. Your articles have been the most productive learning on jQuery I've found. Keep up the good work...


Jan 28, 2009 at 9:54 AM // reply »
6,371 Comments

@Kevin,

Always glad to help. Please feel free to ask me for any demos - it's how I spend my mornings :)


Kevin
Jan 28, 2009 at 10:36 AM // reply »
4 Comments

Ben,

Now I'm really going to get confusing.

Each of the DIVs in my array have "X" buttons, where I use slideUp() to remove them. If I have iterated through all of the array objects, then remove one or more of the DIVs, how can I "reset" the array so that I can click and add them back, if need?

And, while we're at it, I'd like to reduce the amount of code in my script by passing the ID of the DIV back to the slideUp() function, instead of having a separate function for each one. I do this all the time with long javascript, but not sure how I would accomplish this with jQuery. (Feel free to make this a separate post, if you prefer. I think it could be a useful tutorial on reusing code.)

Thanks,
Kevin


Jan 28, 2009 at 2:55 PM // reply »
6,371 Comments

@Kevin,

Hmm, interesting....


Jan 28, 2009 at 3:23 PM // reply »
6,371 Comments

@Kevin,

Try this:

http://www.bennadel.com/blog/1476-Ask-Ben-Displaying-The-Next-Hidden-Element-Using-jQuery-Update-.htm

The difference here is that you have to use a jQuery stack - you can't just use an array for your collection (since we need to filter on it). You can still add arbitrary elements to the same jQuery stack:

Collection: $("#div0").add("#div1").add("#div2")

Hope that helps.


John H
May 15, 2009 at 11:13 AM // reply »
3 Comments

Hi Ben. Great script. It has very nearly helped me to get exactly what I need. However, I need to tweak it and I just can't get it to work. What I am looking for is a way to hide all but the first three items on load (as opposed to hiding all items). Then I need a way to reduce the number of items back down to a minimum of three. I am trying to reproduce something similar to the BBC home page (bbc.co.uk) where clicking the plus/minus buttons shows/hides additional items. Any help to finish this off would be most appreciated. I can email you the code I have so far if required?


May 19, 2009 at 9:34 AM // reply »
6,371 Comments

@John,

To hide everything after 3rd element, you can use the selector: gt():

$( "div:gt(2)" ).hide()

Since gt() is zero-based, greater than 2 will exclude 0, 1, and 2.


John H
May 19, 2009 at 10:01 AM // reply »
3 Comments

Many many thanks, Ben. I never knew about using :gt in JQuery. That makes things a lot simpler...


Oct 19, 2009 at 2:38 PM // reply »
1 Comments

life saver....

was looking for a simple approach to showing and hiding individual profiles on a click of an anchor. This gave me a massive input.

Thanks


Oct 31, 2009 at 4:47 PM // reply »
6,371 Comments

@errol187,

Awesome :)


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 7, 2009 at 5:53 PM
Ask Ben: Javascript String Replace Method
You can find here an advanced function that prepared with javascript replace function. This can make the first letters of words, sentences, lines and whatever you define automatically: http://www.m ... read »
Andrew Neely
Nov 7, 2009 at 4:56 PM
A Moment That Touched Me - The Fountainhead
Ben, Glad you enjoyed the podcast. Yeah, the Tank Riot guys can get really chatty during the episodes, but that's part of the charm of it for me. They've covered everything from Nichola Tesla to Cha ... read »
Nov 7, 2009 at 4:43 PM
Building A Fixed-Position Bottom Menu Bar (ala FaceBook)
Is it possible to make some more MenĂ¼`s ? ... read »
Jill
Nov 7, 2009 at 11:40 AM
How To Unformat Your Code (Like A Pro)
Derek, I think you might be right - sweet! Thanks for the link :) ... read »
Nov 7, 2009 at 11:25 AM
How To Unformat Your Code (Like A Pro)
I think it would be way easier to just use this http://www.logichammer.com/html-formatter/ He just released v3 and it rocks. ... read »
Jill
Nov 7, 2009 at 7:58 AM
How To Unformat Your Code (Like A Pro)
LMAO - this was pretty funny! I have to admit - I also love to reformat code so I can read it. My boss used to tell me to leave my OCD at home. Now I don't feel so bad after reading everyone else' ... read »
Nov 6, 2009 at 10:10 PM
How To Unformat Your Code (Like A Pro)
The timing of this post is just uncanny. I spent the last 15-20 minutes manually un-formatting my "Ben Nadel" style code within a CFC of mine. I was really digging the readability a few weeks ago, bu ... read »
Roe
Nov 6, 2009 at 5:11 PM
Passing Arrays By Reference In ColdFusion - SWEEET!
ArraySort also reorders the results of these java obj's ... read »