Here is the existing HTML
<div id="options_12" class="pagebody">
<div id="contentframe">
<div id="hsubmenu"></div>
<div id="vsubmenu"></div>
<div id="withmenus" class="withleft"></div>
<div class="nflteampage"></div>
</div>
</div>
<div class="pagefooter"></div>
I am unable to edit any of the HTML but i'm provided the use of jQuery , i want to remove the .pagefooter and replace it with .nflteampage
I tried this will no success
$( ".pagefooter" ).replaceWith( ".nflteampage" );
$(".pagefooter").replaceWith($(".nflteampage"));