I currently have 3 images named back_about_1.jpg, back_about_2.jpg, and back_about_3.jpg.
There is a div with the ID "about" -
<div id="about"></div>
The default background image of the div is set to back_about_1.jpg using CSS -
background: url(../img/back_about_1.jpg) 50% 0 no-repeat fixed;background-size:cover;
I am looking to programmatically change the background image of this div every 5 seconds. Once the background is set to the third image, I would like it to loop back to the first image.
If anyone has any JQuery suggestions or solutions, they would be greatly appreciated! :)