This repository has been archived on 2023-01-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
05_wickler/12_m644p_WIZNET_HTTPServer_SDCARD_pages/WWW/info.js

22 lines
357 B
JavaScript

function getInfo()
{
var oUpdate;
setTimeout(function()
{
oUpdate = new AJAX('get_info.cgi', function(t)
{
try
{
//*eval(t);
document.getElementById('info_txt').innerHTML = t;
}
catch(e)
{
alert(e);
}
}
); oUpdate.doGet();
}
, 300); setTimeout('getInfo()', 3000);
}