Toast
Hello, world! This is a toast message.
<!-- Toast Luncher -->
<button id="toast-invoker" class="btn btn-primary">Toast</button>
<!-- Toast -->
<div id="toast" class="toast" role="alert" aria-live="assertive" aria-atomic="true" style="position: fixed; top: 20px; right: 20px; z-index: 9999;">
<div class="toast-header">
<img src="../assets/img/160x160/img4.jpg" class="avatar avatar-sm avatar-circle mr-2" alt="Image description">
<h5 class="mb-0">Bob Dean</h5>
<small class="ml-auto">11 mins ago</small>
<button type="button" class="close ml-3" data-dismiss="toast" aria-label="Close">
<i class="tio-clear" aria-hidden="true"></i>
</button>
</div>
<div class="toast-body">
Hello, world! This is a toast message.
</div>
</div>
<!-- End Toast -->
<script>
$(document).on('ready', function () {
// initialization of Toasts
$('.toast-show').toast({
autohide: false
});
$('.toast-show').toast('show');
$('#toast-invoker').click(function () {
$('#toast').toast({
delay: 1500
});
$('#toast').toast('show');
});
});
</script>