xxxxxxxxxx
1
<main>
2
<div class="container mt-5">
3
<a id="xxx">Testing</a>
4
</div>
5
</main>
1
1
xxxxxxxxxx
1
$("#xxx").popover({
2
html: true,
3
trigger: 'manual',
4
placement: 'right',
5
content: function () {
6
return '<a id="xxx_follow"><img width="100" height="100" src="https://9design.pl/pol_pl_Irina-Vilim-Obraz-Kobieta-podparta-33588_2.jpg" /></a>';
7
}
8
});
9
10
$(document).on('click', '#xxx', function () {
11
$(this).popover('toggle');
12
$('#xxx_follow').popover({
13
html: true,
14
trigger: 'manual',
15
placement: 'right',
16
content: function () {
17
return '<img width="100" height="100" src="https://antikon.pl/12852-large_default/sloneczniki-obraz-olejny-w-prostej-ramie.jpg" />';
18
}
19
});
20
});
21
$(document).on('click', '#xxx_follow', function () {
22
$(this).popover('toggle');
23
});
Console errors: 0