Skip to main content

Gathering segmented data via jQuery with FOR loops



Here's my code (what I'm stuck on is after the jump)







<script language="JavaScript" type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>

<script type="text/javascript">

var countThisMany = 4; //how many data-id's I want to count per "section" of images

var finalString = ""; //blank var to be used later, must be defined here.

</script>



<img src="foo.jpg" data-id="id1" data-item="1" /> // just a bunch

<img src="foo.jpg" data-id="id2" data-item="2" /> // of images with

<img src="foo.jpg" data-id="id3" data-item="3" /> // data-* usage to

<img src="foo.jpg" data-id="id4" data-item="4" /> // store two bits

<img src="foo.jpg" data-id="id5" data-item="5" /> // of information

<img src="foo.jpg" data-id="id6" data-item="6" /> // that I'll need

<img src="foo.jpg" data-id="id7" data-item="7" /> // to extract

<img src="foo.jpg" data-id="id8" data-item="8" /> // later on below.



<img src="bar.jpg" data-id="id9" data-item="1" /> // another set of images

<img src="bar.jpg" data-id="id10" data-item="2" />

<img src="bar.jpg" data-id="id11" data-item="3" />

<img src="bar.jpg" data-id="id12" data-item="4" />

<img src="bar.jpg" data-id="id13" data-item="5" />

<img src="bar.jpg" data-id="id14" data-item="6" />

<img src="bar.jpg" data-id="id15" data-item="7" />

<img src="bar.jpg" data-id="id16" data-item="8" />



<script type="text/javascript">

var item_array = $("img").map(function() {

return $(this).attr("data-item");

}).get();



//alert(item_array);

//returns "1,2,3,4,5,6,7,8,1,2,3,4,5,6,7,8"





var id_array = $("img").map(function() {

return $(this).attr("data-id");

}).get();

//alert(id_array);

//returns "id1,id2,id3,id4,id5,id6,id7,id8,id9,id10,id11,id12,id13,id14,id15,id16"





for (i=0;i<countThisMany;i++){

finalString=finalString+id_array[i]+';';

}



//alert(finalString);

//returns "id1;id2;id3;id4" -- could be more or less if "countThisMany" is changed to something other than 4



</script>







This entire code is self-contained so feel free to save it as an HTML and uncomment the alerts to see the results.





What I need, however, is a step further. I would like to only collect the data-id of the img tags whose data-item are less than or equal to the variable countThisMany





So the end result of finalString would be "id1;id2;id3;id4;id9;id10;id11;id12". And if countThisMany was changed to 2, for instance, it would be "id1;id2;id9;id10"





I feel as though I am so close but I can't figure out how to only gather the first 4 of the first set of 8 images, and the first 4 of the second set of 8 images. Again, the total amount of images and how many I would need to capture vary, hence the "countThisMany' var.





This is my first post to the amazing stackoverflow community, so I'm excited! Thanks to all contributors ahead of time!


Comments

  1. Use filter method

    var item_array = $("img").filter(function() {
    return parseInt($(this).data("item")) <= countThisMany;
    }).map(function() {
    return $(this).data('id');
    }).get();

    ReplyDelete
  2. var countThisMany = 4;
    var item_array = $("img")
    .filter(function() {
    return parseFloat( $(this).attr("data-item") ) <= countThisMany;
    })
    .map(function() {
    return $(this).attr("data-id");
    })
    .toArray(); /* instead of get() */


    Note that this will return an array. You seem to want a string, so you might want to call .join(',') on the result.

    ReplyDelete
  3. Use $.grep in combination with $.map. I also added a join to array rather than the loop. fiddle: http://jsfiddle.net/brentmn/5yNbE/5/

    var countThisMany = 2;
    var finalString = "";

    var id_array = $.grep($('img'), function(item) {
    return ($(item).data('item') <= countThisMany);
    }).map(function(item) {
    return $(item).data('id')
    });

    finalString = id_array.join(';');

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 1 Final Exam 2011 latest (hot hot hot)

  Hi! I have been posted content of ccna1 final exam (latest and only question.) I will post the answer and insert image on sunday. If you care, please subscribe your email an become a first person have full test content. Subcribe now  Some question  have not content because this question have images content. So that can you wait for me? SUNDAY 1. A user sees the command prompt: Router(config-if)# . What task can be performed at this mode? Reload the device. Perform basic tests. Configure individual interfaces. Configure individual terminal lines. 2. Refer to the exhibit. Host A attempts to establish a TCP/IP session with host C. During this attempt, a frame was captured with the source MAC address 0050.7320.D632 and the destination MAC address 0030.8517.44C4. The packet inside the captured frame has an IP source address 192.168.7.5, and the destination IP address is 192.168.219.24. At which point in the network was this packet captured? leaving host A leaving ATL leaving...