I have this code, where I would like that next skips to next iteration.
$.each(result, function(key, value) {
if (value.type == "individuel") {
cform["IN"] = "checked";
} else if (value.type == "course") {
cform["CO"] = "checked";
} else {
next;
}
cform["ID"] = key;
cform["title"] = value.title;
$('#template').tmpl(cform).appendTo('#content');
});
But next apparently means something different from what I would expect.
It seams to me that next exits the $.each rather than skipping the current key/value.
Does there exist a way to do next like I would expect?
nextis not a keyword or reserved word in Javascript, so unless it was defined somewhere as a variable, puttingnextin your code should throw aReferenceError– MooGoo Jun 8 '11 at 15:28