I am using a cool alert js library Project: https://github.com/CodeSeven/toastr
I wanted to fadeOut the following alter after a period of time.
Looking at the toastr.js file, I do see the options are there.
I just dont know how to access the property ‘fadeAway’
toastr.info('Processing...');
I tried
toastr.info('Processing...', fadeAway:1000);
How do I use the fadeAway by passing in a parameter ?
Before you call toastr.info, set the option you choose. For example:
You can see many of the options in the demo here: toastr demo
These are the defaults. You can override many of them: