Rookie here .. I\'m trying to make my static background become a carousel.. my current html looks something like this:
i ended up finding a page that had exactly what i was looking for:
Bootstrap carousel as website background
will refer you to http://untame.net/2013/04/twitter-bootstrap-carousel/ and about halfway down the page will show you how to make a bootstrap background carousel without coding any JQ except for:
$(document).ready(function() {
$('.carousel').carousel({interval: 7000});
});
amazing!