If I have 3 Div boxes (any number really) ordered in the following manor:
-
The following grab the first DIV and move it to be the last item in the parent container.
However, you will need to make sure you can target the container DIV somehow. So if you cannot edit the HTML, target the element based on some other parent element with a unique ID or class.
Markup:
JavaScript:
$('#container #one').appendTo('#container');