How to move an element to end of it's parent?
I have the following
-
<div id="container">
- <div class="row">blah</div>
-
<div class="row">blah</div>
-
<div class="row">blah</div>
-
<div class="row">blah</div>
-
<div class="row">blah</div>
- </div>
I would like to move the upper most row which I'm referencing by the eq:
to the end of div#container
I thought I could use append or appendTo, but these don't seem to be working.
Any ideas welcome! Thanks :)