I think the missing parte were the data-attributes tags. They must be there togheter with jquery init.
At the moment i had both tootltip, popover and modal fully working but also swapping js loading order by putting modernizr ad last optional. Il giorno 28/mag/2013 03:46, "Thais Mendes Ramalho" <[email protected]> ha scritto: > Here's how to make it work: > > > - Download JQUERY to */js* or whatever dir you're using. > > > > - Make sure you link jquery AND bootstrap .js files - (the sample > templates do NOT link to *bootstrap.min.js* by default, which is the > file you have when you download the framework from it's website. Instead, > the template links to a bunch of nonexistent individual JS files) > > > <script src="js/jquery.js"></script> > <script src="js/bootstrap.min.js"></script> > > > - Add this inside the HTML <head>: > > <script> > jQuery(function ($) { > $("a").tooltip() > }); > </script> > > > - Make the tooltip in anchors with the *rel="tooltip":* > > > <a href="#" rel="tooltip" title="Tooltip Text"> ... </a> > > -- > 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/XH_ttp_9yXg/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.
