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 have this code that will call a page to a div when the radio button is selected, but sometimes, it takes 4 or 5 secounds to load, because it as a big query...

Is there a way to put a loading signal while the div loads the content ? thanks :)

   $('#button-radio-1').change(function(){
                var valor = $(this).val(); 
                $.post('mostrar_whois.php',{valor: valor}, function(data){
                $('#pesquisa').html(data)
                });
            });
share|improve this question

1 Answer

You can try add a "spinner" img to your div, and remove it as soon as the post action is complete. Like this:

$('#button-radio-1').change(function(){
                var valor = $(this).val();
                $('#pesquisa').html('<img src="spinner.gif" />');
                $.post('mostrar_whois.php',{valor: valor}, function(data){
                $('#pesquisa').html(data);
                });
            });
share|improve this answer
Not working, it loads the image, but right after, it loads the mostrar_whois.php, and spends same 3, 4 secounds to load it :) – nunong21 Aug 7 '12 at 12:07
I don't get it, isn't that what you are looking for? Have the spinner visible until the mostrar_whois.php finishes execution and return data? – CrisDeBlonde Aug 7 '12 at 12:20
no, it takes a little until the data loaded is complete, and i wanted to have it in that time :) – nunong21 Aug 7 '12 at 13:02

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.