vote up 1 vote down star
2

I am using jquery and the getJSON method and I am wondering if there is a way to display a message saying loading before it loads my content. i know with the jquery ajax calls there is the before submit callbacks where you can have something but the getJSON only has like three options.

Any ideas?

Thanks,

Ryan

flag

68% accept rate

4 Answers

vote up 2 vote down check

there is the custom .ajax "before" and "success" events which you can trigger.

Normally however, you would just do something like


  showLoadingAnimation(); 
  $.getJSON(  ..... function(){
      dontShowLoadingAnimation(); 
  }); 

or something similar.

Your question is however somewhat vauge, and its hard to ascertain what it is you want to do that you wouldn't already be able to do simply with javascript.

link|flag
vote up 2 vote down

You can use ajaxSend and ajaxStop on the jQuery object to attach the appropriate event handlers as in this tutorial. This will bring up the progress indicator regardless of the type of request (all of the jQuery AJAX and JSON methods) and also hide the loading graphic if an error occurs.

link|flag
Do those work with the getJSON? That tutorial helped...thanks for the link. – Coughlin Nov 29 '08 at 22:07
I haven't tested it, but since at their core the jQuery.ajax and jQuery.getJSON are just calling jQuery.get with default values it should. – Kevin Gorski Nov 29 '08 at 22:33
vote up 2 vote down

Add this somewhere to your page:

<div id="loading" style="display:none">
    <img src="/images/ajax-loader.gif" alt="Loader" />&nbsp;Loading...
</div>
<script type="text/javascript">
    $().ready(function() {
        $("#loading").bind("ajaxSend", function() {
            $(this).show();
        }).bind("ajaxComplete", function() {
            $(this).hide();
        });
    });
</script>

You can style the loader-div as you like, e.g Google Mail-like loader:

#loading
 {
   position:fixed; 
   _position:absolute;
   top: 0;
   left:47%; 
   padding:2px 5px;
   z-index: 5000;
   background-color:#CF4342;
   color:#fff;
 }
link|flag
Would something like this work with jquery's getJSON? Maybe wrap it in a function and call it, but I am just not sure how it would work with the getJSON? – Coughlin Nov 29 '08 at 22:05
vote up 0 vote down

Kent,

Something like that would work, just display a simpling div element with the display text Loading... then display my JSON results.

Ryan

link|flag

Your Answer

Get an OpenID
or

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