CodeSeven / toastr

Simple javascript toast notifications

Home Page:http://www.toastrjs.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to catch on click event on multiple toasts?

asimus90 opened this issue · comments

I couldn't achieve that catching on clicks. Multiple toasts appear on screen and i want to get data of specific toast data on click.
Alarm/notification.. many toasts on screen and if i click on alarm, i want to show data about it not others.
i could get last notification data always not specific one inside of them.

Thanks in advice

The third parameter gives you the ability to set the options one of them is onclick
toastr.success('We do have the Kapua suite available.', 'Turtle Bay Resort', {onclick: function (){ .... }})