[jQuery] Problem with long request

[jQuery] Problem with long request


Hi guys,
i have a one problem..
Script JS:
$().ready(function() {
     $(window).load(function () {
         $("#content").append("Connessione in corso..
");
        $.get("bot.php", function(data){
             $("#content").html(data);
        });
});
});
/* file bot.php */
while($i<85000){
    echo "$i
";
    $i++;
    }
/****************************/
Why my script dosn't work perfectly?
I found one error by firefox 'debug error'.
Sorry for my english.
Thanks.