I have an element that serves as the banner on my website. This banner has HTML content on it, but uses a high-resolution picture as the background-image. Because of this, I\'m
Basically use setInterval to call loadBGImage, say every 60 seconds.
setInterval
e.g. something like
var interval = 0; var intervalTimer = setInterval( function(){ if (++interval > 10) {interval = 1} $("#bannerTable").loadBGImage("/picture" + interval + ".png"); } , 60000 );