notification like whatsapp in jquery

Solutions on MaxInterview for notification like whatsapp in jquery by the best coders in the world

showing results for - "notification like whatsapp in jquery"
Julia
20 Oct 2016
1<script type="text/javascript">
2  setInterval(function(){
3    notification();
4  }, 1000 * 60 * 15
5               );
6  function notification()
7  {
8    alert('notification send');
9  }
10</script>
11