How to insert image inside Bootstrap popover
Topic: Bootstrap / SassPrev|Next
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:
Example
Try this code »<!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>
Related FAQ
Here are some more FAQ related to this topic: