xxxxxxxxxx
1
<div class="container my-5">
2
<button
3
type="button"
4
id="popconfirm1"
5
class="btn btn-primary popconfirm-toggle"
6
>
7
Popconfirm 1
8
</button>
9
<button
10
type="button"
11
id="popconfirm2"
12
class="btn btn-primary popconfirm-toggle"
13
>
14
Popconfirm 2
15
</button>
16
17
<p class="mt-4">Last confirmed: <strong><span id="poconfirmValue"></span></strong></p>
18
</div>
1
1
xxxxxxxxxx
1
var popconfirmElements = document.querySelectorAll('.popconfirm-toggle');
2
var popconfirmValue = document.getElementById('poconfirmValue');
3
4
popconfirmElements.forEach(function (popconfirmElement) {
5
popconfirmElement.addEventListener('confirm.mdb.popconfirm', function() {
6
popconfirmValue.innerHTML = popconfirmElement.id;
7
})
8
})
Console errors: 0