Answers for "jquery live notification"

0

jquery live notification

setInterval(function(){
  $.get("updates.php", {}, function(results){
    if ($(results).length) {
      $("results").each(function(){
        // do something with update messages
      });
    }
  });
}, 30000); // Every 30 seconds.
Posted by: Guest on May-25-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language