Plug in does not load

.net, javascript, jquery, jquery-plugins

Solution

Reading the comments and searching for the related issue I found out that the reason is that because the jQuery was being included twice. Look at this.

I created this fiddle where I am including chosen from this cdn service.

If jquery is included only once than

$(".chzn-select").chosen();

should work fine.

EDIT:

Instead of using

$(document).ready(function(){
    $(".chzn-select").chosen();
});

try

$(document).bind("pageinit", function() {
    $(".chzn-select").chosen();
});

Problem

Why does not my plug in load? The jquery and plug in links are referenced. The plug in is called .. .. Please help me find what I am missing in the code. ``` <script src="~/Scripts/jquery-1.7.1.js"></script> <script src="~/Scripts/chosen.jquery.js"></script> <select class="chzn-select" tabindex="1" style="width:350px;" data- placeholder="Choose a Country"> <option value=""></option> <option value="United States">United States</option> <option value="United Kingdom">United Kingdom</option> <option value="Afghanistan">Afghanistan</option> <option value="Albania">Albania</option> </select> <script> $(document).ready(function(){ $(".chzn-select").chosen(); }); </script> ``` I am getting the firebug error: TypeError: $(...).chosen is not a function

Original source