<!-- https://craftpip.github.io/jquery-confirm/index.html -->
<div class="container mt-5">
<button class="btn btn-primary" id="btn-alert">Simple Alert</button>
</div>
$('#btn-alert').on('click', function(){
$.alert({
title: 'Simple Alert!',
content: 'Hello World',
});
})