Skip to content Skip to sidebar Skip to footer

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 minute

Solution 1:

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.

Solution 2:

Post a Comment for "Jquery/javascript Alert Popup On A Set Time"