ToastMessage
jQuery plugin for popin alerts
HTML
<script src="https://rawgit.com/akquinet/jquery-toastmessage-plugin/master/src/main/javascript/jquery.toastmessage.js"></script>
<link rel="stylesheet" href="https://rawgit.com/akquinet/jquery-toastmessage-plugin/master/src/main/resources/css/jquery.toastmessage.css">
<p>
<span class="description">Show a success toast</span> <a href="javascript:void(0);" id="to1a">not
sticky</a>
</p>
JavaScript
function showSuccessToast() {
$().toastmessage('showSuccessToast', "Success Dialog which is fading away");
}
$('#to1a').click(showSuccessToast);