Всем привет!
Не могу разобраться, как мне запустить всплывающее уведомление от toastr.js
Есть такой код, но с ним уведомление не выходит:
<script type="text/javascript">
$(document).ready(function()) {
toastr["error"]("123", "123");
toastr.options = {
"closeButton": true,
"debug": false,
"progressBar": false,
"positionClass": "toast-top-right",
"onclick": null,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "5000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut"
}
}
</script>
Если же я просто вставляю в консоль следующее, то уведомление отображается:
toastr["error"]("123", "123");
toastr.options = {
"closeButton": true,
"debug": false,
"progressBar": false,
"positionClass": "toast-top-right",
"onclick": null,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "5000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut"
}
Как быть?