I use jquery Chosen together with malihu's plugin mCustomScrollbar and I found it not compatible.
I want to apply the scrollbar on chosen result and its not working. Here is my working fiddle to see my work.
HTML:
$(function() {
$('select.select').chosen({
disable_search_threshold: 10,
width: "50%"
});
//$('.chosen-results').mouseenter(function() {
$('.chosen-results').mCustomScrollbar({
theme: "dark-3"
});
//});
});
.select {
max-height: 100px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.7.0/chosen.jquery.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.css" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.7.0/chosen.css" rel="stylesheet"/>
<select id="name" class="select">
<option value="">Select</option>
<option value="aaa">aaa</option>
<option value="bbb">bbb</option>
<option value="ccc">ccc</option>
<option value="ddd">ddd</option>
<option value="eee">eee</option>
<option value="fff">fff</option>
</select>
jsFiddle: https://jsfiddle.net/bbwfvcj0/
You have to initialize the mCustomScrollbar when it is visible.