xxxxxxxxxx
1
<select class="mySelect" id="mySelect">
2
<option value="1">One</option>
3
<option value="2">Two</option>
4
<option value="3">Three</option>
5
6
</select>
7
<div class="select-custom-content">
8
<button id="close-btn" class="btn-save btn btn-primary btn-sm">Close</button>
9
</div>
1
1
xxxxxxxxxx
1
// Get references to the button and select element
2
const selectEl = document.getElementById('mySelect');
3
const closeBtn = document.getElementById("close-btn");
4
// Create a new instance of the mdb.Select class
5
6
const mySelect = new mdb.Select(selectEl);
7
// Add a click event listener to the button
8
closeBtn.addEventListener("click", function(){
9
// Call the close method on the select instance
10
// mySelect.close() - mySelect is not defined!
11
mySelect.close()
12
});
Console errors: 0