You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, is it possible to hide displayed notification when use click on certain button. to prevent displaying two or more notification at the sametime.
Like this:
$.notify.hide():????? // I need to hide every existing shown notifiction.
$.notify('Please enter your name',{
position:'top right',
className: 'error',
});
The text was updated successfully, but these errors were encountered:
I know this is an old question but I leave here the solution I found in case it may serve others.
What I do is find all elements with notify-wrapper class and trigger the hiding action: $('.notifyjs-wrapper').trigger('notify-hide');
Hi, is it possible to hide displayed notification when use click on certain button. to prevent displaying two or more notification at the sametime.
Like this:
$.notify.hide():????? // I need to hide every existing shown notifiction.
$.notify('Please enter your name',{
position:'top right',
className: 'error',
});
The text was updated successfully, but these errors were encountered: