vote up 0 vote down star

Hi everyone,

I use jquery version 1.3.2,

I want to use event "load" for load content of a page to "div".

I used: $("#div1").load("page1.php"); ---> it worked.

But i want before do event "load", it waiting about times.

it same: $("#div1").load("page1.php",{after: 5});

please tell me how to do, thank you very much...

flag

3 Answers

vote up 1 vote down

You can try delay plugin or take a look to more traditional approach

link|flag
vote up 0 vote down

You could try to slow the server down in sending its response, e.g.

//sleep for 5 seconds before outputting stuff
sleep(5);
echo 'Now I\'ll talk!';
link|flag
vote up 0 vote down

Using settimeout() would be the best and easiest way through.

link|flag

Your Answer

Get an OpenID
or

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