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

e52a45a1c8c8fe895fc0fc8c4e6999b8-le32d4.cache-4

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