JSFiddle - React, Tailwind, and code Playground

HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>


<script type="text/javascript">
  function AssignMultipleList() {
    $("#list2,#list3").html("<OPTION>1</OPTION><OPTION>2</OPTION><OPTION>3</OPTION>");
    //$("#list2,#list3").append("<OPTION>1</OPTION><OPTION>2</OPTION><OPTION>3</OPTION>");
  }

</script>

</head>
<body>
<input id="Button2" type="button" value="MultipleList" onclick="AssignMultipleList()"/>
<select id="list2">
</select>
<select id="list3">
</select>
</body>
</html>