Book Image

Learning Bootstrap

Book Image

Learning Bootstrap

Overview of this book

Table of Contents (15 chapters)
Learning Bootstrap
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Free Chapter
1
Getting Started with Bootstrap
Index

Streamlining your projects with official plugins


Since most of the plugins have a dependency on jQuery, you have to include the CDN link for jQuery or include the jQuery file in your code by downloading the file from the official website. In this chapter, we're using the CDN link for all the examples including the Bootstrap JavaScript and theme file.

The <head> section for all the coding examples will include the following links:

<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script  src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

Now, let's take a look at the popular plugins, which you can incorporate in your code to build aesthetic websites.

Tooltips

Tooltips are used to...