I am attempting to extract an inner div from an outer div and relocate it outside of the outer div.
https://i.stack.imgur.com/NSS7B.png
<div class="vc_gitem-zone-mini">
<div class="vc_gitem_row.............."></div>
<div>
I Would like to achieve :
<div class="vc_gitem-zone-mini">
<div>
<div class="vc_gitem_row.............."></div>
Is there a way to accomplish this using CSS or jQuery..?