Hi,
we can show a image to show that processing is on in ajax.on the bases of ready states
Like the following
0 The request is not initialized
1 The request has been set up
2 The request has been sent
3 The request is in process
4 The request is complete
can we do this in jquery. i use following code
Thanx
we can show a image to show that processing is on in ajax.on the bases of ready states
Like the following
0 The request is not initialized
1 The request has been set up
2 The request has been sent
3 The request is in process
4 The request is complete
can we do this in jquery. i use following code
Code:
$.ajax({
type: "GET",
url: "abc.php",
data: "usrid=1",
success: function(msg){
$('#abc').html(msg)
}
});
Comment