Skip to content
Snippets Groups Projects
Select Git revision
  • 32c0c5244c413703981a79acb4502a8e9d404a33
  • master default protected
2 results

3f7329c5293ffd510edef78f73874cfd-le32d4.cache-4

Blame
  • mainlog.js 170 B
    $(function() {
        var myInterval = setInterval(function(){
            $.get('log.php', function(data) {
                $('#mainlog').html(data);
            });
        }, 5000);
    });