JSFiddle - React, Tailwind, and code Playground

by Girisha Chennura

HTML

<script src="http://ivaynberg.github.com/select2/select2-3.2/select2.js"></script>
<link rel="stylesheet" href="http://ivaynberg.github.com/select2/select2-3.2/select2.css">
<div style="background:#eee;height:750px">
    <select id="select2" placeholder="Alphabet">
        <option></option>
        <option>A</option>
        <option>B</option>
        <option>C</option>
        <option>D</option>
    </select>
</div>

CSS

body{
    margin:50px;
}

JavaScript

$(function() {
   $('#select2').select2(); 
});

$(window).scroll(function() {
$(".select2-container.select2-dropdown-open").not($(this)).select2('positionDropdown');
});