vote up 1 vote down star

I want to have a timeout after 5 seconds and then display "Unable to fetch page". But im not sure how to go about it... Heres what I got so far...

$(document).ready(function() {
					$('#content').html('<br><br><br><br><img src="load.gif" border="0"><br><br><strong>Generating Link...</strong>');
                $("#content").load("ajax.php");
})
flag

50% accept rate

1 Answer

vote up 3 vote down check
var tick = function() {
             $("#content").html('Unable to fetch page!');
           }

$(document).ready(function() {

                var loadTimeout = setTimeout(tick, 5100);

                $.ajax({
                  url: "ajax.php",
                  timeout: 5000,
                  success: function(data) {
                    $("#content").html(data);
                    clearTimeout(loadTimeout);
                  }
                });

})
link|flag
Hmm.. it just didnt load the page at all nor show the error – Imran Oct 8 at 23:02
I simplified it a bit – code_burgar Oct 8 at 23:04
@Imran sorry i had an error.. there was a "vat" instead of a "var" on line 1 – code_burgar Oct 8 at 23:05
Oh right nah i got it working now.. but i've noticed something... On ajax.php I simply made a sleep(6), so now what happens is once it hits the 5 second limit it shows that error message and then after a second loads the content on ajax.php. Once the error message has been displayed can I not stop it loading the page? that was kinda the point – Imran Oct 8 at 23:07
@Code_burger: Yeah I just realized after reading your 1st comment – Imran Oct 8 at 23:08
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.