Closed hiromitz closed 10 years ago
The $.bootstrapGrowl
function returns the jQuery element. You should just be able to do something like this:
$el = $.bootstrapGrowl('hi');
$el.click(function(e) {
console.log('clicked!');
});
oh, I see. thanks.
I added callback option when notification is clicked.
This option is actually that I needed for my project.
thanks.