The best explanation to this problem you will find in this video... https://www.youtube.com/watch?v=KjgIkxgDJg4
I'm confused, I'm using Joomla! 3.1.1 and the latest T3 v1.3.1 framework. This carousel works great on WAMP local server. On hosted one, there is a problem. As you can see, carousel disappears on every next slide. I think there is a conflict with mootols scritp. PLS help. This is my code <div id="myCarousel" class="carousel slide"> <div class="carousel-inner"> <!--Slide 1--> <div class="item active"> <div class="jumbotron masthead"> <div class="container"> <h1>Welcome to T3</h1> <p>The all new, modern and flexible framework from JoomlArt.</p> <a class="btn btn-primary btn-large icon-download-alt" href="/https://github.com/t3framework/t3/tags">; Download <span class="hidden-phone">T3 </span> </a></div> </div> </div> <!--Slide 2--> <div class="item"> <div class="jumbotron masthead"> <div class="container"> <h1>Explore T3</h1> <p>The all new, modern and flexible framework from JoomlArt.</p> <a class="btn btn-success btn-large icon-search" href="/https://github.com/t3framework/t3/tags">; Learn <span class="hidden-phone">T3 </span> </a></div> </div> </div> <!--Slide 3--> <div class="item"> <div class="jumbotron masthead"> <div class="container"> <h1>Discuss T3</h1> <p>The all new, modern and flexible framework from JoomlArt.</p> <a class="btn btn-warning btn-large icon-user" href="/https://github.com/t3framework/t3/tags">; Talk about <span class="hidden-phone">T3 </span> </a> </div> </div> </div> </div> <a class="left carousel-control" href="#myCarousel" data-slide="prev">‹</a> <a class="right carousel-control" href="#myCarousel" data-slide="next">›</a> </div> <script> !function ($) { $(function(){ // carousel demo $('#myCarousel').carousel({interval: 2000}) }) }(window.jQuery) </script> -- You received this message because you are subscribed to the Google Groups "twitter-bootstrap" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
