Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
8answers
8k views

Invoking a jQuery function after .each() has completed

In jQuery, is it possible to invoke a callback or trigger an event after an invocation of .each() (or any other type of iterative callback) has completed. For example, I would like this "fade and ...
11
votes
9answers
5k views

What's the safest way to iterate through the keys of a Perl hash?

If I have a Perl hash with a bunch of (key, value) pairs, what is the preferred method of iterating through all the keys? I have heard that using each may in some way have unintended side effects. ...
8
votes
4answers
2k views

jQuery .each() index?

I am using $('#list option').each(function(){ //do stuff }); to loop over the options in a list. I am wondering how I could get the index of the current loop? as I dont want to have to have var i ...
8
votes
8answers
397 views

Is perl's each function worth using?

From perldoc -f each we read: There is a single iterator for each hash, shared by all each, keys, and values function calls in the program; it can be reset by reading all the elements from the ...
8
votes
4answers
4k views

How to write a loop in jQuery which waits for each function to complete before continuing the loop

Please forgive me if this is an obvious one. I have an unknown amount of elements on a page, which I need to loop through one at a time and do stuff to. However, I need the loop to pause until the ...
8
votes
5answers
16k views

JQuery - How to add a class to every last list item?

Got some code here that isn't working: $("#sidebar ul li:last").each(function(){ $(this).addClass("last"); }); Basically I have 3 lists and want to add a class (last) to each item appearing ...
8
votes
3answers
2k views

Perl: while ($key = each %hash) doesn't stop at key = 0

I don't need this, obviously; I'm just curious about what's going on here. Am I missing something simple? Can I rely on this behaviour in all versions of Perl?) Perl v5.8.8: %h = ( 0=>'zero', ...
7
votes
5answers
506 views

for vs each in Ruby

I just had a quick question regarding loops in Ruby. Is there a difference between these two ways of iterating through a collection? # way 1 @collection.each do |item| # do whatever end # way 2 ...
7
votes
3answers
2k views

wait for each jQuery

I'm trying to make a div fade in/out that's within an each statement. The problem is that next item is called before the fade in/out is complete. <script ...
6
votes
1answer
94 views

jQuery .each() faulty in BB OS5?

I've been working on debugging some jQuery on a BlackBerry OS5 device (the 8530). There are a number of problems, but one that I have narrowed down is related to jQuery's .each() The logic is as ...
6
votes
3answers
1k views

about ruby range?

like this range = (0..10) how can I get number like this: 0 5 10 plus five every time but less than 10 if range = (0..20) then i should get this: 0 5 10 15 20
6
votes
6answers
1k views

Should I use jQuery.each()?

I'm doing very frequent iterations over arrays of objects and have been using jQuery.each(). However, I'm having speed and memory issues and one of the most called methods according to my profiler is ...
6
votes
4answers
13k views

Practical Uses for jQuery's $().each() method for a presentation

I'm giving a presentation to some coworkers today on how to use jQuery with ColdFusion. This is more of an introduction to jQuery than an advanced session. I'm trying to show how one can loop using ...
6
votes
5answers
7k views

jQuery loop through data() object

Is it possible to loop through a data() object? Suppose this is my code: $('#mydiv').data('bar','lorem'); $('#mydiv').data('foo','ipsum'); $('#mydiv').data('cam','dolores'); How do I loop ...
5
votes
5answers
159 views

what does “return this.each()” do in jQuery?

I'm looking at a jQuery plugin, which has a single function. After setting up the appropriate defaults though a constructor argument the function defines a couple of helper functions, and then as the ...
5
votes
3answers
207 views

In jQuery is it more efficient to use filter(), or just do so in the each()?

I currently have code that is pulling in data via jQuery and then displaying it using the each method. However, I was running into an issue with sorting, so I looked into using, and added, jQuery's ...
5
votes
1answer
2k views

Last element in .each() set

I have an issue, where by I am doing a simple form validation, that needs some custom stuff that the validation plugin could not do for me. Basically, I have a name, email and message field, all are ...
4
votes
0answers
79 views

Jquery - simplify jquery with .each()? [migrated]

can someone help me over this please. I have this piece of code: $("#infocontent-northamerica").hide(); $("#infocontent-northamerica div").hide(); $('#linkwrapper-northamerica ...
4
votes
3answers
64 views

Unbind hover event on a set of img

I have a problem with a set of images. My aim is to show an related-image when you hover a thumbnail, and hide it when you roll out the image. The problem is that I need to put an delay() on the hover ...
4
votes
3answers
74 views

modulor % in django template

I'm looking for a way to use something like the modulor operator in django. What I am trying to do is to add a classname to every fourth element in a loop. with modulor it would look like this: {% ...
4
votes
3answers
83 views

Understanding jQuery each loop

I have the following code: HTML: <div class="sectionInner"><div class="carousel"></div></div> <div class="sectionInner"></div> <div ...
4
votes
1answer
2k views

each loop in underscore.js template. WTF?

I'm doing something wrong here but I can't see it! Im trying to loop an array in a underscore template. It doesn't work though so I'm missing something, Here's my code, my templates work fine ...
4
votes
5answers
1k views

How to add pause between each iteration of jQuery .each()?

I'm grabbing an array of jQuery objects and then via .each() modifying each individual jquery with in the array. In this case I'm updated the class names to trigger a -webkit-transition-property to ...
4
votes
3answers
249 views

jQuery: How to use each starting at an index other than 0

I am really hoping this is obvious and I just missed it :) I have a collection of elements that I want to loop over using each, but I am looping over them inside an outer for loop. When I find what I ...
4
votes
6answers
286 views

Ruby each logic question

I am trying to solve a simple Ruby problem from Seven Languages in Seven Weeks Print the contents of an array of sixteen numbers, four numbers at a time, using just each Here is what I came ...
4
votes
2answers
381 views

Jquery - Multi array and each

i have a problem with the each function. HTML <div id="d1" class="line1"></div> JS $(function() { tt = new Array(); tt['id_32'] = new Array("32", "gudfgws", "htdfgss", "0", ...
4
votes
5answers
7k views

Nested jQuery.each() - continue/break

Consider the following code: var sentences = [ 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 'Vivamus aliquet nisl quis velit ornare tempor.', 'Cras sit amet ...
4
votes
5answers
125 views

Nested Each Loop Causing Problem

Hello – My question is best summarize with the intended output and the real output. Any clue why it's doing this, using the following HTML and JS code? HTML Code: <h3>CATEGORY 1</h3> ...
4
votes
3answers
2k views

Jquery each loop with json array

I'm trying to use Jquery's each loop to go through this JSON and add it to a div named #contentHere. The Json is as follows: { "justIn": [ { "textId": "123", "text": "Hello", "textType": "Greeting" ...
4
votes
5answers
1k views

jQuery each loop - using variables

I have a list of products. Each product has a title and a review link. Currently the titles link directly to the individual product page, and the review links go elsewhere. I'd like to use a jquery ...
4
votes
4answers
843 views

jQuery .each question

Is it possible to run a jQuery .each statement a certain amount of times rather then for each of the items being iterated? The JSON being iterated is a last.fm feed, and of course, they ignore the ...
4
votes
2answers
290 views

Replacing jquery each with for

I apologize in advance if this is a stupid question that betrays my lack of understanding of javascript/programming. I've been using $.each to do iterations for a while now, but I keep on hearing ...
3
votes
2answers
31 views

Select all hyperlink with id that is visible

I have lot of this hyperlink in my page. Some of them are visible and some are hidden. <a class="close-reveal-modal" id="close_car2">&#215;</a> <a class="close-reveal-modal" ...
3
votes
7answers
63 views

Reverse $.each output in jQuery

I'm making a little secret tool. The output will be in a table, and on the left-hand side I'd like to list the numbers I have stored in $.each(). So here's my code: $.each([1,2,3,4,5], function(i, ...
3
votes
2answers
48 views

jquery each input hasClass

For my needs I use $('#form :input').each( function(i) { if ( !$(this).hasClass('donot') ) { $(this).attr('disabled', 'disabled'); } }); is there a better way to not use the if ...
3
votes
2answers
45 views

jquery optimize looped animate function

I'm needing to find a more efficient way of accomplishing this outcome: http://jsfiddle.net/H4sjf/1/ The setInterval() mixed with the .each() and subsequent .animate() makes this script considerably ...
3
votes
5answers
155 views

jQuery: animated, continuous loop through children

Close but not quite there. I'd like to have the first child div displayed for a couple seconds, slide down (via positioning) and fade out of view, then the next child slide up and fade into view. ...
3
votes
3answers
104 views

jQuery Populate content inside a new element before appending it

I'm trying to populate featured with data then append it to #wrapper. This isn't working for me. What am i doing wrong? var featured = '<div id="featured"></div>'; $('#imageTable tbody tr ...
3
votes
1answer
92 views

Is it possible to use variable names dynamically in SASS each loop?

This is a simplified example. What I'd like to do is use the items in the array to output variable values I've previously created. The syntax below that tries create a variable by concatenating a '$' ...
3
votes
2answers
74 views

jquery each only outputting first iteration of JSON

Using this code: $.each(data.toptracks.track, function(index, item){ $('.lastfm').append('<figure class="clearfix"><p><a ...
3
votes
2answers
76 views

jQuery Each() as a For statement?

I have a jQuery.each() function that I would like to turn into a FOR statement. I was wondering how I can turn jQuery('.myclass').each(function() { //do stuff } into a for ( ...
3
votes
5answers
77 views

Question about JavaScript variable scope

Can someone tell me why this alert is empty? var pending_dates = []; $.getJSON('/ajax/event-json-output.php', function(data) { $.each(data, function(key, val) { ...
3
votes
2answers
72 views

overrode 'each' and '[]' in my array subclass, which works, but 'select' seems to be ignoring it

I have a class where I want 'each' to yield another custom object, so I wrote this: class Fq_price_set < Array ... def [](i) # instead of returning an array, it returns an Fq_price_rec ...
3
votes
4answers
804 views

jquery: reverse an order

How can I reverse an order with jquery? I tried with the suggestion like this but it won't work! $($(".block-item").get().reverse()).each(function() { /* ... */ }); Have a look here. I want the ...
3
votes
3answers
212 views

How to get name of current JSON property while iterating trough them in JavaScript?

I have JSON object inside variable like this: var chessPieces = { "p-w-1" : { "role":"pawn", "position":{"x":1, "y":2}, "state":"free", "virgin":"yes" }, ...
3
votes
5answers
221 views

jQuery variable scope within each

I am trying to build an array containing all the values of every form element. The alert works just find, but on console.log data is empty, am I failing to understand how scoping in javascript works? ...
3
votes
8answers
2k views

Get random item from array with jQuery

var items = Array(523,3452,334,31,...5346); Each item of this array is some number. How do I get random item from var items? This question is similar to Get random item from array, but for jQuery. ...
3
votes
1answer
261 views

Ruby - recursive each for n-ary tree

Fixed: See EDIT EDIT Hey guys, I'm having trouble with writing my own recursive each for an n-ary tree. @element is the value of the node, and @children is an array of all connected lower nodes. ...
3
votes
2answers
200 views

jQuery each function not working need to replace each attribute

I have this html <form method="POST" action="" id="order" class="forms"> <div> <span class="col1">Ref.</span> <span class="col2">Number</span> ...
3
votes
6answers
255 views

what's different between each and collect method in Ruby

a = ["L","Z","J"].collect{|x| puts x.succ} #=> M AA K print a.class #=> Array b = ["L","Z","J"].each{|x| puts x.succ} #=> M AA K print b.class #=> Array From the this code I don't ...

1 2 3 4 5 10