jQuery.eachで処理された配列内で一致が見つかった場合、残りの要素をさらに処理せずにブレーク/リターンできます。
<ul>
<li>foo</li>
<li>bar</li>
リスト項目を選択して、それらを反復処理できます。
$( "li" ).each(function( index ) {
//if($(this).text() == 'foo') , i.e if foo is found ,
//then return instead of processing bar.
});