Answers for "javascript get text of a html select from a value of element"

1

get the value or text from select element using javaScript

<select id="ddlViewBy">
  <option value="1">test1</option>
  <option value="2" selected="selected">test2</option>
  <option value="3">test3</option>
</select>
Running this code:

var e = document.getElementById("ddlViewBy");
var strUser = e.value;
Would make strUser be 2. If what you actually want is test2, then do this:

var e = document.getElementById("ddlViewBy");
var strUser = e.options[e.selectedIndex].text;
Posted by: Guest on July-18-2021
0

get text of selected option js

var sel = document.getElementById("box1");
var text= sel.options[sel.selectedIndex].text;
Posted by: Guest on June-22-2021

Code answers related to "javascript get text of a html select from a value of element"

Browse Popular Code Answers by Language