Untitled

Anonymous
javascript
01/23/2024 9:12 PM
536 B
14
Indexable
document.querySelector("select#departamento")?.addEventListener("change", function (e) {
    if (e.target.value === "CU") {
        const options = document.querySelectorAll("select#ciudad option")
        options.forEach(op => {
            if (op.value === "Bogota"){
                op.value = "Bogota, D.C."
                op.innerText = "Bogota, D.C."
            }
        })
    }
        
})
Editor is loading...
Leave a Comment