xxxxxxxxxx
1
<div class="toast" id="example-toast" role="alert" aria-live="assertive" aria-atomic="true">
2
<div class="toast-header">
3
<strong class="me-auto">MDBootstrap</strong>
4
<small>11 mins ago</small>
5
<button type="button" class="ms-2 mb-1 close" data-mdb-dismiss="toast" aria-label="Close">
6
<span aria-hidden="true">×</span>
7
</button>
8
</div>
9
<div class="toast-body">Example toast</div>
10
</div>
1
1
xxxxxxxxxx
1
const options = {
2
position: 'top-center',
3
}
4
$(document).ready(()=>{
5
$('#example-toast').toast(options);
6
})
7
8
Console errors: 0