Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery/javascript alert popup on a set time

Do you know if there exists any Jquery plugin that displays an alert popup message every period of time, or one in a set period of time? For instance: your time expires in x minutes, the timeout being given.

Thank you!

like image 759
dana Avatar asked Jun 07 '26 05:06

dana


1 Answers

Why plugin when there is a native window.setInterval javascript function?

window.setInterval(function() {
    // this will execute every 5 minutes => show the alert here
}, 300000);

Of course you could use a plugin to do sexier notifications rather than a boring alert.

like image 99
Darin Dimitrov Avatar answered Jun 10 '26 08:06

Darin Dimitrov



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!