<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">DOMNodeInserted</td><td valign="top" nowrap class="compatibility">NN <span class="emphasis">6</span> IE <span class="emphasis">n/a</span> DOM <span class="emphasis">2</span>&nbsp;&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" nowrap class="usage"><p class="literal"></p>
					</td><td valign="top" nowrap class="requirements">Bubbles: Yes; Cancelable: No&nbsp;&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="description"><p>Fires on a node when that node is explicitly inserted into an
existing node container. If you assign an event listener for this
event to an element that is the recipient of an inserted (including
appended) node, the <span class="literal">DOMNodeInserted</span> event fires on
the node being inserted (the <span class="literal">srcElement</span> of the
<span class="literal">event</span> object). If the event bubbles further (i.e.,
away from the point of insertion), the event listener function can
still find out about the new container by reading the
<span class="literal">relatedNode</span> event property. Note that if the
incoming node comes from another location in the same document, the
removal of the node from its original container fires the
<span class="literal">DOMNodeRemoved</span> event on the removed node before it
leaves its original container (so that the event can bubble up to its
original container).
</p>
							</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="typicaltargets"><span class="title">Typical Targets</span></td>
				</tr>
				<tr>
					<td colspan="2"><p>			All rendered nodes.</p>
					</td>
				</tr>
			</table>
		</div>
</body>
</html>