Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I currently have this code and it's pretty simple

$('#window').load('http://mysite.com/mypage.php');

But it shows the content only after fully loaded and during that duration the #windows element remains empty. I want to show a loading image until the page loads. How should i do it? The jquery site explains nothing about it. (afaik)

share|improve this question

3 Answers

up vote 3 down vote accepted

Create a loading div first.

 <div id='loadingDiv'>
    Please wait...  <img src='path to your super fancy spinner' />
 </div> 

Hide this DIV initially and attach the code to show this div when ajaxCall starts and hide this when ajax call completes.

$('#loadingDiv').hide().ajaxStart( function() {
$(this).show();  // show Loading Div
} ).ajaxStop ( function(){
$(this).hide(); // hide loading div
});

Edit
There was some issue in SO formatting tags a while back. Added those again.

share|improve this answer
OMG, what is wrong with SO formatting.. All formatting gone and LoadingDiv code is not displayed at all. – Rakesh Juyal Jun 6 '12 at 12:21

For this purpose you have to use a gif image. First of all change the html of #window to gif image until the content is loaded

Working Code

$('#window').html("<img src="image_url" />").load('http://mysite.com/mypage.php');
share|improve this answer
simple adding the image url resulted in the url being printed on the screen but this code worked well $('#window').html("<img src=\"loader.gif\" />").load('http://mysite.com/mypage.php'); – rzr Jun 6 '12 at 12:17
1  
One problem you might run into with this approach is that if the load fails for any reason, your image will just sit there and never go away. You need to add a complete handler to hide remove the image once it is finished. – Josh Jun 6 '12 at 12:19
May you please edit my answer – user1432124 Jun 6 '12 at 12:20
yeah just use position property – user1432124 Jun 6 '12 at 12:22

For async requests that I know have the potential to take more than a few milliseconds, I use Spin.js It does not have any external dependencies, and is cross-browser compatible

see fiddle http://jsfiddle.net/y75Tp/3/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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