Bootstrap

Bootstrap is an open source and most popular toolkit for developing with HTML, CSS, JS and mobile-first websites. Quickly prototype your ideas or build your entire app with our Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful plugins built on jQuery. Bootstrap is completely free to download and use!

Subjects

Latest Asked Question

45 Likes
A : Create tooltip using bootstrap and jquery  <meta name="viewport" content="width=device-width, initial-scale=1">   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <div class="container">   <h3>Tooltip Example Using Bootstrap</h3>   Hover over me </div> <script> $(document).ready(function(){     $('[data-toggle="tooltip"]').tooltip();    }); </script>
45 Likes
Bootstrap Related Topic's