JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
  <style>

  div { color:red; }
  </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <select style="with" name="sweets" multiple="multiple">
    <option>Çikolata</option>
    <option selected="selected">Şeker</option>

    <option>Puf</option>
    <option selected="selected">Karemel</option>
    <option>Kurabiye</option>

  </select>
  <div></div>
<script>
    $("select").change(function () {
          var str = "";
          $("select option:selected").each(function () {
                str += $(this).text() + " ";
              });
          $("div").text(str);
        })
        .change();
</script>

</body>
</html>