I am trying to do something like this in my jQuery:
$("#loading").show();
and here is the #loading
div which I have as display:none
at the bottom of the screen:
<div id="loading" style="display:none; ">
<p><img src="img/ajax-loader.gif" /> Please Wait</p>
</div>
I realize that the .show()
function just makes things appear, but how could I display this overlayed over the content of the screen since that div just has a .gif
spinner icon that signals to the user to wait?