Is there a way to add animation to 'inserBefore'? I have a wierd business requirement to have a tab in a navigation move from the last position on the right, to the first position on the left.
The business wants it to be obvious when this happens and the want to to move across in an animated way.
So a simplified example is this:
Say this is the nav in question.
<ul id="test">
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
<li>Fourth Item</li>
<li>LAST Item</li>
</ul>
Any way to make the below behavior animated?
$("li:last").insertBefore("li:first");