xxxxxxxxxx
1
<div>
2
3
</div>
1
1
xxxxxxxxxx
1
const div = document.querySelector('div')
2
const popoverEl = document.createElement('button');
3
popoverEl.classList.add("btn", "btn-lg", "btn-danger")
4
popoverEl.textContent = "popover"
5
6
div.appendChild(popoverEl)
7
8
const options = {
9
title: "Popover title",
10
content: "And here's some amazing content. It's very engaging. Right?"
11
}
12
13
14
const popover = new mdb.Popover(popoverEl, options)
15
16
17
Console errors: 0