Is it possible to show multiple toastr messages in different positions?

 <script>
    var options1 = { positionClass: 'toast-top-full-width', timeOut: 0};
    toastr.error('Message1', 'Title1', options1);

    var options2 = { positionClass: 'toast-bottom-right', timeOut: 5000}
    toastr.success('Message2', 'Title2', options2);
</script>

the success of the toast disappears after 5 seconds, but it does not appear in the lower right corner

+4
source share

All Articles