For some time, I have been utilizing jQuery AJAX to preload GIF images with the following code:
$("#images").html("<img id='loader' src='../img/ajax-loader.gif' />");
Now, I am attempting to achieve a similar effect (such as a spinning wheel) to preload CSS background images instead of just img tags.
Is this feasible?