views:

8005

answers:

4

I try to implement AJAX in my website. When the content of the div changepass is clicked then it should load changepass.template.php. Here is the code im using for that.

 $(function() {
   $(".changepass").click(function() {
    $(".block1").load("views/changepass.template.php");
    return false;
 });

My question is how to show GIF Animation (loading.gif) while the page changepass.template.php is fully loaded. Give me some code tips Please.

+7  A: 

There are many approaches to do this. A simple way to do,

 <div style="display:none" id="dvloader"><img src="loading.gif" /></div>

$(function() {
    $(".changepass").click(function() {
     $("#dvloader").show();
     $(".block1").load("views/changepass.template.php", function(){ $("#dvloader").hide(); });
     return false;
    });
});

Edited display:block to show() after suggestion from James Wiseman :)

kayteen
Setting the display style using css in this way ignores default browser stylesheet settings. You might not want to display 'block'
James Wiseman
Yes you're right.. i'll modify that and make it as show()/hide()
kayteen
+1  A: 

Rather that setting the style

.css("display", "block");

Just use the .hide() and .show() methods.

These account for the brower default stylesheet definitions for HTMl elements. You may not want to display 'block' for the image. There can be loads of different possible display styles for an element:

http://www.w3schools.com/htmldom/prop%5Fstyle%5Fdisplay.asp

James Wiseman
A: 

you can call some method to show loading gif after calling load and hide it using callback in load function:

$(function() {
   $(".changepass").click(function() {
    $("#gifImage").show(); 
    $(".block1").load("views/changepass.template.php",null,function(){
            $("#gifImage").hide();
    });
   return false;
});
TheVillageIdiot
+2  A: 

To make it a little more robust, for example, you forget to add the

<div style="display:none" id="dvloader"><img src="loading.gif" /></div>

to the html, you can also do this in jQuery, something like:

var container = $.create('div', {'id':'dvloader'});
var image = $.create('img', {'src':'loading.gif'});
container.append($(image));
$("body").append($(container));

Which will add the div automatically.

Just fire this on the onclick button event.

Makes it a little less open to errors.

JonB