JSFiddle - React, Tailwind, and code Playground

by hcanning2012

HTML

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

JavaScript

var e = document.getElementById("ddlViewBy");
var strUser = e.value;
document.write(strUser);