You can run functions after notification ends.
$('#start').on('click',function(){ $.amaran({ 'message' :'My first example!', 'position' :'top right', 'afterEnd' :function() { alert('Hello World'); } }); });