xxxxxxxxxx
/*
Returning false is the best way to "break" from a .each() loop
using jQuery. For example:
*/
jQuery("#myElemID").each(
function()
{
if (jQuery(this).text().includes('foo'))
{
return false;
}
}
);
xxxxxxxxxx
$.each(array, function(key, value) {
if(value === "foo") {
return false; // breaks
}
});
// or
$(selector).each(function() {
if (condition) {
return false;
}
});
xxxxxxxxxx
var arr = [1, 2, 3, 4, 5];
var result = null;
$.each(arr, function(index, value) {
if (value === 3) {
result = "Found it!";
return false; // Break the each loop
}
});
console.log(result); // Output: "Found it!"
xxxxxxxxxx
$.each(array, function(key, value) {
if(value === "foo") {
return false; // breaks
}
});
// or
$(selector).each(function() {
if (condition) {
return false;
}
});