Alert message disappearing after few seconds

1
Hi ! Is there a plugin which displays an alert message which will disappear after few seconds ? I couldn’t find any … Thanks ! 
asked
2 answers
0

Hi would something like Toastr Notiification, Notification or Appronto notification module from Marketplace fulfill your requirement?

answered
2

Hi francois,
you can add the below  code in html snippet  set content type as javascript with jquery

$(".alert").show(() => {
    setTimeout(() => {
        $(".alert").fadeTo(500, 1).slideUp(500, () => {

            $(message).hide();
        })
    }, 5000)
});
answered