Untitled
unknown
javascript
2 years ago
400 B
6
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