JSFiddle - React, Tailwind, and code Playground

by sushilbharwani

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.0/css/select2.min.css">
<select class="js-example-basic-single" name="state">
  <option value="[email protected]">Abinav Gunwant | [email protected]</option>
  <option value="[email protected]">Some User | [email protected]</option>
  <option value="[email protected]">Some Other | [email protected]</option>
  <option value="[email protected]">Google User | [email protected]</option>
</select>

JavaScript

$(document).ready(function() {
    $('.js-example-basic-single').select2();
});