xxxxxxxxxx
1
<div id="liveToast" class="toast" style="width: 350px; position: fixed; top: 0; left: 50%; transform: translate(-50%, 0px)" data-delay="10000" data-animation="true">
2
3
<div id="LiveToastBG" class="toast-header alert-info">
4
<span id="ToastIcon"></span>
5
<strong class="mr-auto"><span id="ToastHeadline"></span></strong>
6
<small><span id="ToastMessageTimeSinceSent"></span></small>
7
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
8
<span aria-hidden="true">×</span>
9
</button>
10
</div>
11
<div class="toast-body" style="background-color: #FFFFFF;">
12
<span id="ToastMessage"></span>
13
</div>
14
15
</div>
1
1
xxxxxxxxxx
1
$(document).ready(function(){
2
$(".toast").toast();
3
});
Console errors: 0