Answers for "dropdown option text"

CSS
6

select text

::-moz-selection { /* Code for Firefox */
  color: red;
  background: yellow;
}

::selection {
  color: red;
  background: yellow;
}
Posted by: Guest on August-04-2020
1

alert dropdown selected text

$(".qualificationStatus option:selected").text()
Posted by: Guest on April-10-2020

Code answers related to "dropdown option text"

Browse Popular Code Answers by Language