I display a div indicating the page is loading for all ajax request.
here code to show the div
this code display the loading...div always on top of page , I want to display this in the center of page , please tell me how I can do that ?Code:if (!document.getElementById('busy-symbol')) { busySymbol = document.createElement('div'); busySymbol.id = 'busy-symbol'; var busyLabel = document.createElement('div'); busyLabel.innerHTML = 'Loading ...'; busySymbol.appendChild(busyLabel); document.body.appendChild(busySymbol);


Reply With Quote
Bookmarks