I am trying this fiddle http://jsfiddle.net/iminfo/txnot4h1/
I am using ASP MVC VS13.
I am getting the error 0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'multiselect' at this point.
<script type="text/javascript">
$(document).ready(function () {
    $('#ddlCars').multiselect();
    $('#ddlCars1').multiselect({
        numberDisplayed: 2,
    });
    $('#ddlCars2').multiselect({
        includeSelectAllOption: true,
        enableFiltering: true
    });
    $('#ddlCars3').multiselect({
        nonSelectedText: 'Select Cars'
    });
});
 </script>
I could not find a solution how to run this on my VS13. I am very new to JS and BootStarp. Please help. Thank you.
User contributions licensed under CC BY-SA 3.0