[Solved] Use Chosen jQuery plugin in MVC Asp Net


You have to actually initialize the chosen library on your select component. This is best done in the document ready event to make sure the library is loaded.

By for example adding this in your html code:

<script>
    $(function() {
        $("select").chosen();
    });
</script>

2

solved Use Chosen jQuery plugin in MVC Asp Net