<html>
<link rel="stylesheet" href="josh.css">
<body bgcolor="#FFFFFF">

		<div id="Description">
			<table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
				<tr><td valign="top" class="name">continue</td><td valign="top" nowrap class="compatibility">NN <span class="emphasis">2</span> IE <span class="emphasis">3</span> ECMA <span class="emphasis">1</span></td>
				</tr>
				<tr>
					<td valign="top" nowrap class="usage"><p class="literal"></p>
					</td><td valign="top" nowrap class="requirements"></td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="description">
						<p>Stops execution of the current iteration through the loop and returns
to the top of the loop for the next pass (executing the update
expression if one is specified in a <span class="literal">for</span> loop). If
you are using nested loop constructions, assign labels to each nested
layer, and use the desired label as a parameter with the
<span class="literal">continue</span> statement. See the
<span class="literal">label</span> statement (available only starting with
Navigator 4 and Internet Explorer 4).
</p>
												</td>
</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="example"><span class="title">Example</span></td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td><span class="programlisting"><pre>outerLoop:
for (var i = 0; i &lt;= maxValue1; i++) {
    for (var j = 0; j &lt;= maxValue2; j++) {
        if (j*i == magic2) {
            continue outerLoop;
        }
    }
}</pre>
						</span></td>
				</tr>
			</table>
		</div>

</body>
</html>