Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Toastr JS Setting fadeAway value

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 ?

like image 794
Ravi Ram Avatar asked Sep 05 '25 16:09

Ravi Ram


1 Answers

With version 2.0.3 you do the following to make the toastr display longer:

toastr.success('Hello World', 'New Message', { timeOut: 9500 });
like image 136
Brian Ogden Avatar answered Sep 07 '25 16:09

Brian Ogden