Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta name="description" content="Applying theme to Bootstrap Tooltips and changing its color/opacity/transparency" />
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<title>JS Bin</title>
</head>
<body>
  <button onclick="activateTooltips()">Activate Tooltips!</button>
  <br><br><br><br><br>
  <a href="#" class="tooltip-danger"   title="Hello, I'm dangerous">
    Hover here to see tooltip!
  </a>
  
  <script>
    function activateTooltips() {
        $(document.body).tooltip({ selector: "[title]" });
    }
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
syteluspro
0viewers