JSFiddle - React, Tailwind, and code Playground
by apoucoz
HTML
<link type="text/css" href="http://akquinet.github.io/jquery-toastmessage-plugin/demo/css/jquery.toastmessage-min.css" rel="stylesheet" />
<script type="text/javascript" src="http://akquinet.github.io/jquery-toastmessage-plugin/demo/jquery.toastmessage-min.js"></script>
<a href="javascript:showStickySuccessToast();">sticky</a>
JavaScript
function showStickySuccessToast() {
$().toastmessage('showToast', {
text: 'Success Dialog which is sticky',
sticky: false,
position: 'middle-center',
type: 'success',
closeText: '',
close: function () {
console.log("toast is closed ...");
}
});
}