$(document).ready(function(){ $.niceToast.setup({ position: "top-right", timeout: 15000, }); $('button').click(function (e) { let toast = $.niceToast.error('<strong>Error</strong>: The password you entered for the username'); toast.change('redirecting ...' ,2000) }); // Call Plugin });