This is a stripped down example of what I'm trying to do. I'm trying to get my wrapper function myElements to return the elements coming from the underscore each iterator. I can trace out the values of the els inside the _.each function but how can I get my function to return those values when called from my buttonClickListener?

buttonClickListenr: function(event){

 if ( $(event.target).is( myElements() )) return;
 ..// otherwise move on in my event phase

}

myElements: function(){
 var filter=['a','b'];
 _.each(filter, function(el){ 
 return el
});
    }
link|improve this question

65% accept rate
feedback

2 Answers

up vote 0 down vote accepted

What you're trying to do doesn't really make sense. The 'include' operator is probably more useful for you:

if ( _(filter).include($(event.target)) ){ return; }

link|improve this answer
feedback

The each function will invoke the callback once per element and not group the return values as you expect. Instead you need to store them in a structure which persists after the each method finishes

Try the following

getNums: function(){
  var filter=['20','2'];
  var result = [];
  _.each(filter, function(num){ 
    result.push(num);
  });
  return result;
}

EDIT

OP clarified they just want to see if the event.target is in the array. In that case you just want to use the indexOf method. For example

getNums: function() {
  return ['20', '2'];
},

buttonClickListener: function(event){
  if (this.getNums().indexOf(event.target) >= 0) {
    // It's present
  }
}
link|improve this answer
Right but this returns an arry of the numbers. I want to be able to call this in a if ( bla.is( getNums() ) ...do something. So I want to be able to use the returned value one by one to check with the is method. – Chapsterj Oct 14 '11 at 18:31
@Chapsterj it's really unclear what you want this function to do then. Could you try giving a larger example? – JaredPar Oct 14 '11 at 18:36
why not if ( getNums.length > 0 ) {... ? – Philip Schweiger Oct 14 '11 at 18:37
Ok updated my post with a more functional example. sorry for not being more clear what I need to do. – Chapsterj Oct 14 '11 at 18:47
@Chapsterj i still don't understand. What exactly are you trying to test? – JaredPar Oct 14 '11 at 18:53
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.