Untitled

 avatar
unknown
javascript
a year ago
407 B
9
Indexable
document.querySelector("select#departamento")?.addEventListener("change", function (e) {
    if (e.target.value === "CU") {
        const options = document.querySelectorAll("select#ciudad option")
        options.forEach(function(op) {
            if (op.value === "Bogota"){
                op.value = "Bogota, D.C."
                op.innerText = "Bogota, D.C."
            }
        })
    }
        
})
Editor is loading...
Leave a Comment