1st of all hello all.
Ok here is the problem if someone could help i would be glad tnx.
I commented the problem.
//xml.php
<?xml version="1.0" ?>
<m>08:39:27</m>
//functions.js
//start timeoutfunc
timeout(0)
//Take xml.php and parse it
function show()
{
$.get('xml.php', function(xml){
var time = $.xml2json(xml)
$("#timer").text(time.m)
});
}
//timout func
function timeout(counter)
{
counter = counter+1
if(counter == 1)
{
setTimeout('timeout("'+counter+'")', 1000)
}
else
{
if (counter == 10) counter = 0;
setTimeout('timeout("'+counter+'")', 1000)
}
//execute func
show()
}
works create on firefox but not on ie:S it doesnt update on ie Like setTimeout not working


