xxxxxxxxxx
1
<select class="select" 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
3
const selectEl = document.getElementById('mySelect');
4
const closeBtn = document.getElementById("close-btn");
5
// Create a new instance of the mdb.Select class
6
7
const select = new mdb.Select(mySelect);
8
// Add a click event listener to the button
9
closeBtn.addEventListener("click", function(){
10
// Call the close method on the select instance
11
mySelect.close()
12
});
Console errors: 0