Hallo,
darf dieses Javascript aufhören, zu arbeiten, falls die Serververbindung abreißt?
Ich meinte natürlich:
<script type='text/javascript'>
$(document).ready(function(){
my_func = function(){
$.ajax({
type: 'POST',
url: 'reload.php',
dataType: 'json',
success: function(data){
//...
window.setTimeout('my_func()', 20000);
},
error: function() {
window.setTimeout('my_func()', 1000);
}
});
};
window.setTimeout('my_func()', 20000);
});
</script>