I'm trying to re-create the most basic "states" select2 example, but it does not match beyond the first letter - just like a normal select
element. It does seem to be loading select2, for example, it displays the selected value to the right of the select
element. However, when I try to type a state, it only seems to match the first character. I.e., If I type "t" it will match "Texas", but typing "dak" will match "Delaware" rather than "North Dakota".
I've create a gist of my complete html page. I copied the select
element directly from the example page, so there's not a whole lot to it.
In a nutshell, I create a select
element with the class js-example-basic-single
, and then I call select2()
on that element.
<script type="text/javascript">
$(document).ready(function() {
$(".js-example-basic-single").select2();
});
</script>
Edit: On JS Bin
Updated jsBin.
Check the simple working snippet below based on you gist code, and make sure you're adding the CSS link include :
Hope this helps.