Return true as continue statement
<html>
<head>
<script type='text/javascript' src='js/jquery-1.3.2.js'></script>
<script type='text/javascript'>
$(document).ready(
function() {
$(['A', 'B', 'C', 'D'])
.each(
function() {
if (this == 'A') {
return true;
}
$('ul').append(
"<li>" + this + "</li>"
);
}
);
}
);
</script>
</head>
<body>
<ul>
</ul>
</body>
</html>
Related examples in the same category