jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements

<div>
	Here is a DIV.
</div>
<script type="text/plain">
	Here is a DIV.
</script>
 
<div>
	<span>
		Here is a DIV / SPAN.
	</span>
</div>
<script type="text/plain">
	Here is a DIV / SPAN.
</script>
 
<span>
	Here is a SPAN.
</span>
<script type="text/plain">
	Here is a SPAN.
</script>
 
<ul>
	<li>
		Here is a UL / LI.
	</li>
	<li>
		Here is a UL / LI.
	</li>
</ul>
<script type="text/plain">
	Here is a UL / LI.
</script>
<script type="text/plain">
	Here is a UL / LI.
</script>
 
<ul>
	<li>
		<ul>
			<li>
				Here is a UL / UL / LI.
			</li>
		</ul>
	</li>
</ul>
<script type="text/plain">
	Here is a UL / UL / LI.
</script>

For Cut-and-Paste