Can you supply the entire code as you have it that you are using (in pastebin/jsbin or something) so we can look. I've not really had much of a issue, normally I just copy the example out of the doc and include jquery min and bootstrap min
Each JS Module has two methods of making a module work. Either thru the magic of data-whatever/magic detect/self start or actually adding JavaScript to instantiate on your target div. I generally instantiate myself On Sat, May 25, 2013 at 12:25 PM, matteo maria ambrogi <[email protected] > wrote: > iniatilizing as you suggested is not working for me, in any js components > :( > (obviously i am including all the js files and no errors received) > > Il giorno 24/mag/2013, alle ore 22:41, Jeremy Rareparts < > [email protected]> ha scritto: > > iange87 is correct, include jquery, bootstrap, and carousel requires > initialization with: > <script> > !function ($) { > $(function(){ > $('#myCarousel').carousel() > }) > }(window.jQuery) > </script> > > phpacademy has a great introduction to bootstrap. it is a little > longwinded, but it is great to get you started (8 videos total) > https://www.youtube.com/watch?v=y13WPLBfFBs > > On Tuesday, May 14, 2013 10:46:04 AM UTC-7, Bell Biv DeBarge wrote: >> >> To my surprise, I downloaded Bootstrap and there are hardly any files in >> there. No examples. The examples have completely different coding >> structures, so if you copy the source of an example and change the paths so >> that everything is localized to what actually downloaded when you >> downloaded Bootstrap, you still end up with all this stuff not working: >> >> <!-- Le javascript >> ==============================**==================== --> >> <!-- Placed at the end of the document so the pages load faster --> >> <script src="js/jquery.js"></script> >> <script src="js/bootstrap-transition.**js"></script> >> <script src="js/bootstrap-alert.js"></**script> >> <script src="js/bootstrap-modal.js"></**script> >> <script src="js/bootstrap-dropdown.js"**></script> >> <script src="js/bootstrap-scrollspy.**js"></script> >> <script src="js/bootstrap-tab.js"></**script> >> <script src="js/bootstrap-tooltip.js">**</script> >> <script src="js/bootstrap-popover.js">**</script> >> <script src="js/bootstrap-button.js"><**/script> >> <script src="js/bootstrap-collapse.js"**></script> >> <script src="js/bootstrap-carousel.js"**></script> >> <script src="js/bootstrap-typeahead.**js"></script> >> <script> >> >> >> Someone said that all of these are included in bootstrap.min.js so I put >> <script src="js/bootstrap.min.js"></**script> there in place of all that >> above and still the menu dropdown doesn't work, still the carousel >> doesn't work. Frustrating and so avoidable, which makes it even more >> frustrating (just put the examples in the download so that they are working >> correctly and stop wasting everyone's time) >> > > -- > You received this message because you are subscribed to a topic in the > Google Groups "twitter-bootstrap" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/twitter-bootstrap/H7zTUQgbZeA/unsubscribe?hl=en > . > To unsubscribe from this group and all its topics, send an email to > [email protected]. > > For more options, visit https://groups.google.com/groups/opt_out. > > > > > -- > 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. > > > -- Barry Carlyon -- 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.
