JSFiddle - React, Tailwind, and code Playground

HTML

<html>
    <head></head>
    <body class="primary-define color-custom">

    <div id="header"></div>


    <div id="container">
    <div id="container-inner" class="wrapper clearafter">


    <div id="notification" class="active">.. notification content here</div>

    <div id="content">content here</div>


    </div>
    </div>
    </body>
    </html>

JavaScript

$(function(){
var a = $("#notification");
    
$("body").prepend(a);
});