All of AlertifyJS animation/transition effects are disabled due to user preference that the system minimizes the amount of animation or motion it uses. See prefers-reduced-motionCSS media feature.
dismiss
(
)
chainable
Description: Dismisses the notification message
Parameters: none
var msg = alertify.message('Click anywhere to dismiss me!', 0);
$('body').one('click', function(){
msg.dismiss();
});