jQuery Loading Status for $.ajax
- by Geetha
Hi All,
I am using the following code to get data from the database( from cs page itself i am creating the html code) and binding the html code to the div.
Problem:
If the database size is higher it takes some time to show the result. thet time i want to shoe a loading.gif image in that location. Once it get the data i have to hide the load image.
Code:
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
data: "{ searchText: '" + searchText + "', product: '" + product + "', category: '" + category + "', artist:'" + artist + "'}",
url: "Search.aspx/FetchSearchResult",
dataType: "json",
success: function(data) { $("#searchContainer").html(data.d[0]);}});
Geetha.