| 1234567891011121314151617181920212223242526272829303132333435 |
- //function login_toast_noti(message) {
- // $.toast({
- // title: 'Notice!',
- // subtitle: '11 mins ago',
- // content: 'This is a toast message.',
- // type: 'info',
- // delay: 3000,
- // dismissible: true,
- // img: {
- // src: 'image.png',
- // class: 'rounded',
- // title: '<a href="https://www.jqueryscript.net/tags.php?/Thumbnail/">Thumbnail</a> Title',
- // alt: 'Alternative'
- // }
- // });
- //}
- //$(document).ready(function() {
- // toastr.options.timeOut = 5000; // 1.5s
- //toastr.info('Page Loaded!');
- // for success - green box
- //toastr.success('Success messages');
- //// for errors - red box
- //toastr.error(message);
- //// for warning - orange box
- //toastr.warning('warning messages');
- //// for info - blue box
- //toastr.info('info messages');
- //});
|