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 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.


Reply via email to