Untitled
unknown
plain_text
a year ago
412 B
18
Indexable
document.addEventListener('DOMContentLoaded', function() {
// Set the initial value of the dropdown button to the first option
var firstOption = document.querySelector(".dropdown-option");
var dropdownButton = document.querySelector(".dropdown-button");
if (firstOption) {
dropdownButton.innerText = firstOption.innerText;
}
});Editor is loading...
Leave a Comment