$(function() { // auto hide flash alerts let $notifs = $('div.alert').not('.alert-important').addClass('fadeout') setTimeout(() => { $notifs.addClass('fade') setTimeout(() => { $notifs.addClass('hidden') }, 500) }, 2500) })