I\'m trying to iterate through an array of elements. jQuery\'s documentation says:
jquery.Each() documentation
Returning non-false is the same
jQuery.noop() can help
$(".row").each( function() { if (skipIteration) { $.noop() } else{doSomething} });