Cant get Twitter Bootstrap Carousel to work-Collection of common programming errors
Im having many problems with my Twitter bootstrap Carousel what ever i do is not working so if some one can make a example for me it will help me alot if you dont only say no. I did post a topic and i did get much good response but it did not fix it. I want work many hours now to try to fix it. So thank you if you want to help me fix this.
Hole Side:
$(document).ready(function(){
$('.carousel').carousel();
Home
Products
MineCraft Web
Webdesign
Prices and ordering
References
MineCraft
Contact Us
About ...
MineCraft Webside
Advanced minecraft website with server status, forums, user profiles, shop and more.
‹ ›
Im getting on Console error:
Uncaught TypeError: Object [object Object] has no method 'carousel'
-
You forgot to close your
$(document).ready(function(){
. This is probably your issue.$(document).ready(function(){ $('.carousel').carousel(); });
Also, You should reference the bootstrap js and css from the netdna CDN or locally. You shouldn’t use the getboostrap.com url as that’s not intended as a host for bootstrap (if nothing else, it may disappear without warning).
Originally posted 2013-11-15 09:09:02.