Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Does any know any fallbacks or alternatives for the Boostrap carousel?

As far as I am aware, the BS carousel is not fully cross browser compatible. I'm currently using it in a project but wondered if there were any decent alternatives to avoid this problem with CSS3 animations etc. Thanks in advace :)

1 Answer

For anyone who is interested, there is a fix on github :)

Here is the code that is needed once it has been implemeneted:

<!-- Bootstrap -->
    <script src="bootstrap/js/bootstrap.min.js"></script>   
<!-- /Bootstrap -->
...    
<!--[if lte IE 9]>       
    <script src="ie/ie-bootstrap-carousel.min.js"></script>
<![endif]-->

resource available here