I looked everywhere and could not find the answer so I hope this is somewhat unique. Every example I have seen of reordering elements uses ID's to swap or insert. However, I am getting a feed onto my site and don't have control over whether an ID is used. I am trying to use blogger.com to write articles, feedburner to create the feed, and have it display on my personal website. Here is what I have:
<li>
<span class="headline">
<a href="webpage.html">Article Link</a>
</span>
<p class="date">8/3/2012</p>
<div> Brief article intro...</div>
</li>
Here is what I want:
<li>
<p class="date">8/3/2012</p>
<span class="headline">
<a href="webpage.html">Article Link</a>
</span>
<div> Brief article intro...</div>
</li>
I understand examples I've seen like so:
$("#div2").insertAfter("#div3");
$("#div1").prependTo("#div2");
But I'm not sure how to accomplish this generically or in a loop so that I can swap only classes within a single parent element. I also read about CSS "move-to" but seems like that never really got implemented, so I'm guessing javascript is the way to go. Another option is using a different feed service than Feedburner where I get more control of what info is sent. e.g. A feed service where I can assign ID's to elements before they are sent.