Q:

How to insert image inside Bootstrap popover

0

How to insert image inside Bootstrap popover

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Use the Popover's content Option

You can pass the content option to the Bootstrap .popover() method to insert the images inside the popovers. You can also set this option using the data-content attribute.

Let's try out the following example to understand how it basically works:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Show Images in Bootstrap Popovers</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
    $('[data-toggle="popover"]').popover({
        placement : 'top',
		trigger : 'hover',
        html : true,
        content : '<div class="media"><img src="images/avatar-tiny.jpg" class="mr-3" alt="Sample Image"><div class="media-body"><h5 class="media-heading">Jhon Carter</h5><p>Excellent Bootstrap popover! I really love it.</p></div></div>'
    });
});
</script>
<style>
	.wrapper{
    	margin: 200px 150px 0;
    }
</style>
</head>
<body>
    <div class="wrapper">
        <button type="button" class="btn btn-primary" data-toggle="popover">Popover without Title</button>
        <button type="button" class="btn btn-primary" data-toggle="popover" title="User Info">Popover with Title</button>
    </div>
</body>
</html>

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
How to disable tabs in Bootstrap... >>
<< How to make Bootstrap popover appear/disappear on ...