Answer the question
In order to leave comments, you need to log in
Ajax not working in io 6, 7?
There is a script:
$(document).ready(function(){ <br>
<br>
setInterval(function(){<br>
$.ajax({<br>
url: '../test.php', <br>
dataType : "html", <br>
cache: false, <br>
type : "POST",<br>
data: "links=all",<br>
success: function (data) { <br>
$('#tb_name').empty().html(data);<br>
$("#tb_name").attr("style", "display:block");<br>
},<br>
error:function(xhr, status, errorThrown) { <br>
alert(errorThrown+'\n'+status+'\n'+xhr.statusText); <br>
}<br>
});<br>
}, 10000); <br>
<br>
});
Answer the question
In order to leave comments, you need to log in
In IE (I don't know exactly what the versions are) you can't edit the innerHTML of tables: support.microsoft.com/kb/239832
"display: block" can be ignored, I forgot to delete it.
All tags are closed. Example .
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question