I got this image to tell people that some action is loading: http://problemio.com/img/ajax-loader.gif
Then I put this div on my page to show it:
<div id="loading">
<p><img src="/img/ajax-loader.gif" /> Please Wait</p>
</div>
Then I put this css for it:
#loading
{
display:none;
}
Then in my jQuery I do this:
$("#loading").show();
But it just does not render. Any idea what I am doing wrong and why it does not show up?
Here is a page example where this is supposed to happen: http://www.problemio.com/problems/problem.php?problem_id=216
Thanks!