I would like to rearrange the order of my divs.
This is my structure here:
  <div class="span8 inner-left" style="clear:both;">
    <div class="span3" style="text-align:right;"></div>
  </div>
  <div id="moreread" class="span4 inner-left"></div>
This is what I would like my outcome to be:
   <div class="span8 inner-left" style="clear:both;">
     <div class="span3" style="text-align:right;"></div>
     <div id="moreread" class="span4 inner-left"></div>
  </div>
This does not work:
$(this).find('#moreread').after(".span3");
 
     
     
     
    