Add new project [12_m644p_WIZNET_HTTPServer_SDCARD_pages]

This commit is contained in:
maxxir
2019-02-06 23:38:38 +04:00
parent d26b3f6c49
commit db0fd356f7
49 changed files with 16683 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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);
}