Edit:
This is conflicting when I try @NiftyDude’s addition.
Most pages:
$("blockquote").appendTo(".entry");
<div class="entry">
<div class="project">
<blockquote> </blockquote>
</div>
</div>
Which moves the blockquote outside to the entry div.
<div class="entry">
<div class="project">
</div>
<blockquote> </blockquote>
</div>
The DOM is affecting the outlet page as the blockquote is being appended to the Entry. I want to move it back to the project outlet div.
<div class="entry outlet">
<div class="project outlet">
</div>
<blockquote> </blockquote>
</div>
to this:
<div class="entry outlet">
<div class="project outlet">
<blockquote> </blockquote>
</div>
</div>
Your selector is wrong,
blockquoteisn’t the child of.projectI think the following is what you are looking for:
It looks to me you would like to move each
blockquoteback, so let’s try the following: