Answer the question
In order to leave comments, you need to log in
How to put an exclamation point in the selected option in the select?
not selected. for example - minus
https://jsfiddle.net/gfoyL2dj/
Answer the question
In order to leave comments, you need to log in
document.querySelectorAll('#select option').forEach(n =>
if (n.selected == true) {
n.textContent += n.value + '!';
} else {
n.textContent += n.value + '-';
}
)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question