HTML
xxxxxxxxxx
1
<a class="btn btn-info" onclick="toastr.info('Hi! I am info message.');">Info message</a>
2
CSS
1
1
JS
xxxxxxxxxx
1
toastr.options = {
2
"closeButton": false,
3
"debug": false,
4
"newestOnTop": false,
5
"progressBar": false,
6
"positionClass": "md-toast-top-right",
7
"preventDuplicates": false,
8
"onclick": null,
9
"showDuration": 300,
10
"hideDuration": 1000,
11
"timeOut": 5000,
12
"extendedTimeOut": 1000,
13
"showEasing": "swing",
14
"hideEasing": "linear",
15
"showMethod": "fadeIn",
16
"hideMethod": "fadeOut"
17
}
Console errors: 0