I want the "text complete" moved to the h3.title section .. When I use the following Jscript, the "text complete" is moved to the start of the div.caption. This element repeats several times on the page and needs to be specific to the closest match.
<div class="caption">...
<div class="date">...</div>
<h3 class="title">"text complete" should go here</h3>
<div class="taglist">...</div>
<div class="description"><h3>"text complete"</h3></div>
$('.description h3').each(function () {
$(this).prependTo($(this).closest('.caption'));
*where the Jscript says ".caption" I tried adding "h3.title" but it doesn't work.