michael-d
9/11/2017 - 1:26 AM

Insert a div before another DIV http://api.jquery.com/insertBefore/

Insert a div before another DIV http://api.jquery.com/insertBefore/

<script>
$(document).ready(function(){
            //Change DIVCLASS to DIV Names
    $('.DIVCLASS').insertBefore('.DIVCLASS');
});
</script>