Is it possible to rearrange links using jQuery?
Under the navigation menu, there will be content div for each tab. The selected link should always be positioned next to the first "sixrevision" link.
The code snippet is shown below:
<ul id="crumbs">
<li><a href="#" class="selected">Home</a></li>
<li><a href="#">product 1</a></li>
<li><a href="#">product 1</a></li>
<li><a href="#">product 1</a></li>
/ul>
This set up will create an AJAX tab system with tabs that resemble breadcrumbs. The goal is to ensure that the "selected" item is always placed next to the first item in the list.