Setting Container for Bootstrap 3 Tooltips - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Tooltip

Description

Setting Container for Bootstrap 3 Tooltips

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
 <head> 
  <meta charset="utf-8"> 
  <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <title>Example of Setting Container for Bootstrap 3 Tooltips</title> 
<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/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

  <script type="text/javascript">
$(document).ready(function(){
    // Append tooltip HTML to wrapper element
    $("#myTooltips a").tooltip({
    container: ".wrapper"
  }); <!-- w  w  w . j a  v  a  2s  . c o  m-->
});
</script> 
  <style type="text/css">
  .bs-example{
      margin: 100px 50px;
    }
    .a{
        margin: 25px;
        font-size: 24px;
    }
</style> 
 </head> 
 <body> 
  <div> 
   <div class="wrapper"> 
    <div id="myTooltips"> 
     <a href="#" data-toggle="tooltip" title="Edit Document"><span class="glyphicon glyphicon-edit"></span></a> 
     <a href="#" data-toggle="tooltip" title="Save Document"><span class="glyphicon glyphicon-floppy-disk"></span></a> 
     <a href="#" data-toggle="tooltip" title="Download Document"><span class="glyphicon glyphicon-download-alt"></span></a> 
     <a href="#" data-toggle="tooltip" title="Print Document"><span class="glyphicon glyphicon-print"></span></a> 
     <a href="#" data-toggle="tooltip" title="Delete Document"><span class="glyphicon glyphicon-trash"></span></a> 
     <a href="#" data-toggle="tooltip" title="Settings"><span class="glyphicon glyphicon-cog"></span></a> 
    </div> 
    <!--Dynamically generated tooltip HTML code will be inserted here--> 
   </div> 
  </div>   
 </body>
</html>

Related Tutorials