JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://notifyjs.com/dist/notify-combined.min.js"></script>
<a id="btn">OnObject</a> ------------ <a id="btn-global">Global</a>
<br>
<br>
testestestes
<br>
testestestes
<br>
testestestes
<br>
testestestes
<br>
testestestes
<br>
testestestes
<br>
<br>
<br>
<div id="footer" style="background-color:#333;color:#fff" >FOOOOOOTER</div>
JavaScript
$('#btn').click(function(){
$('#footer').notify("test", { position: 'top center', className: 'info'});
});
$('#btn-global').click(function(){
$.notify("test", { position: 'top center', className: 'info'});
});