xxxxxxxxxx
1
<select class="select">
2
<option value="1">One</option>
3
<option value="2">Two</option>
4
<option value="3">Three</option>
5
<option value="4">Four</option>
6
<option value="5">Five</option>
7
<option value="6">Six</option>
8
<option value="7">Seven</option>
9
<option value="8">Eight</option>
10
</select>
xxxxxxxxxx
1
.custom-option {
2
background: red;
3
color: white;
4
}
xxxxxxxxxx
1
document.addEventListener('open.mdb.select', () => {
2
setTimeout(() => {
3
const allOptions = document.querySelectorAll('.select-option-text');
4
const customOptions = Array.from(allOptions).filter(option => option.textContent === 'Two');
5
customOptions.forEach(option => {
6
option.classList.add('custom-option')
7
})
8
}, 50)
9
10
})
11
Console errors: 0