Switch element sequence with insertBefore
Description
The following code shows how to switch node sequence with .insertBefore.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- www. ja va2 s . c o m-->
$("p").insertBefore("#foo");
});
</script>
</head>
<body>
<body>
<p>a</p>
<div id="foo">java2s.com</div>
</body>
</html>