Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
  <title>JS Bin</title>
</head>
<body style="padding-top: 100px">
  <section>Tooltip Container
    <div data-toggle="tooltip" title="Tooltip" id="tooltip">Tooltip Item
    </div>
  </section>
  
  <script>
    $('#tooltip').tooltip({
      placement: 'top auto',
      viewport: 'section',
      trigger: 'click'
    }).tooltip('show');
  </script>
</body>
</html>
 
body {
  padding-top: 100px;
}
section {
  height: 300px; 
  border: 1px solid red;
}
#tooltip {
  width: 150px; 
  border: 1px solid blue;
}
Output 300px

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers