.after() puts the element after the element
using after:
$('.a').after($('.c'));
after execution:
<div class='a'>
<div class='b'>b</div>
</div>
<div class='c'>c</div> //<----this will be placed here
//Use Jquery
//Include this in your <head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
// This over writes any existing data in the element
// To prevent you can just create a new div under your element
<yourElement>
<div id='<your element id here>'>
<!--Your Jquery will be rendered here-->
</div>
</yourElement>
$('#<your element id here>').html(data);