Skip to content

Instantly share code, notes, and snippets.

@veged
Created May 7, 2009 11:15
Show Gist options
  • Save veged/108055 to your computer and use it in GitHub Desktop.
Save veged/108055 to your computer and use it in GitHub Desktop.
$.each(first, function(i) {
var keepLoop = true;
$.each(second, function(j) {
if (j == 3) return keepLoop = false;
});
return keepLoop;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment