If you want to do "continue" in an .each() loop, you can use below code segment to implement it. $('div').each(function (index, el) { if (index == 0) { return true; } }); break :return false;