I want to show a div with a loading animation over my page while the page loads some XML content. Once its loaded, I want to hide this div. How can I go about doing this?
|
3
|
|
||||
|
|
|
|
||
|
|
|
|
|
|||
|
|
|
|
@cballou Your code will leave '#div' "up", if $.ajax() has not suceeded for any of numerous possible reasons. |
||
|
|
|
I would use the onbeforeunload event fired when the page URL changes, to create an overlay div with opacity at 0.5, which will be replaced by the new content when the page is loaded. |
||
|
|
