Using the twitter bootstrap framework, how is it possible to invoke the carousel to \'auto slide.\' Meaning when the page loads, the carousel automatically scrolls.
I ha
For Bootstrap 4 and onwards:
$(function(){ $('.carousel').carousel({ interval: 2000, ride: 'carousel' // this is the important part }); });