Untitled
Anonymous
plain_text
08/01/2024 8:32 PM
552 B
33
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