Switch element sequence
Description
The following code shows how to switch the sequence of two tags.
Example
<!--from ww w . j av a 2 s.c o m-->
<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() {
$("p").after($("b"));
});
</script>
</head>
<body>
<body>
<b>b</b>
<p>p</p>
</body>
</html>