notifyjs
notifyjs copied to clipboard
how to make it dissapear when i click only ?
the notification dissapears automatically ! how to make the notification dissapears when the user clicks on it ? thanks
At https://notifyjs.com/ under Options shows like that;
$.notify(
"Message!",
{ clickToHide:true,
autoHide: false,}
);
@fabercs thank you !