jquery Chosen plugin in Asp.net MVC 4 does not show in the view
问题 Trying to use chosen plugin for MultiSelectList, but I am having a problem even showing the plugin in my view. Can you guys figure it out why? View: @model test.Models.Employee .... <script src="~/Scripts/chosen.jquery.min.js"></script> <script src="~/Scripts/jquery-1.10.2.min.js"></script> <link href="~/Content/chosen.min.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> $(document).ready(function () { $('.chzn-select').chosen(); }); </script> @using (Html.BeginForm())