How To Create a Tooltip In Bootstrap 4

admin_img Posted By Bajarangi soft , Posted On 06-10-2020

The Tooltip component is small pop-up box that appears when the user moves the mouse pointer over an element,To create a tooltip, add the data-toggle="tooltip" attribute to an element,Use the title attribute to specify the text that should be displayed inside the tooltip,Use the data-placement attribute to set the position of the tooltip on top, bottom, left or the right side of the element:

Bootstrap Tool tip

1.How To Create a Tooltip In  Bootstrap

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
    <h3>Tooltip Example</h3>
    <a href="#" data-toggle="tooltip" title="Hooray!">Hover over me</a>
</div>

<script>
    $(document).ready(function(){
        $('[data-toggle="tooltip"]').tooltip();
    });
</script>

</body>
</html>
1.How To Create a  Positioning Tooltip In  Bootstrap
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
    <h3>Tooltip Example</h3>
    <p>The data-placement attribute specifies the tooltip position.</p>
    <a href="#" data-toggle="tooltip" data-placement="top" title="Hooray!">Top</a>
    <a href="#" data-toggle="tooltip" data-placement="bottom" title="Hooray!">Bottom</a>
    <a href="#" data-toggle="tooltip" data-placement="left" title="Hooray!">Left</a>
    <a href="#" data-toggle="tooltip" data-placement="right" title="Hooray!">Right</a>
</div>

<script>
    $(document).ready(function(){
        $('[data-toggle="tooltip"]').tooltip();
    });
</script>

</body>
</html>
 

 

Related Post