xxxxxxxxxx
1
<div class="chips-test chips-initial" id="myChipsID"></div>
1
1
xxxxxxxxxx
1
const chipsInitialNew = document.querySelector('.chips-test')
2
3
const newChipsNew = new mdb.ChipsInput(chipsInitialNew, {
4
initialValues: [
5
{ tag: 'MDBReact' },
6
{ tag: 'MDBAngular' },
7
{ tag: 'MDBVue' },
8
{ tag: 'MDB5' },
9
{ tag: 'MDB' }
10
]
11
})
12
13
const myChips = document.getElementById('myChipsID')
14
myChips.addEventListener('delete.mdb.chips', (e) => {
15
// do something...
16
alert('deleted by clicking backspace')
17
})
18
19
const chipsCloseButtons = document.querySelectorAll('.chip .close')
20
chipsCloseButtons.forEach(closeBtn => {
21
closeBtn.addEventListener('click', (e) => {
22
// do something...
23
alert('deleted by clicking close btn')
24
})
25
})
Console errors: 0