Skip to content Skip to sidebar Skip to footer

Chosen Jquery Plugin Not Functional.

Using Chosen version 1.0.0 I included the following files link(href='css/chosen.css', rel='stylesheet', type='text/css'); script(src='js/chosen.jquery.min.js') script. $('.chos

Solution 1:

Adding

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

Instead of just $(".chosen-select").chosen() makes it work!

Solution 2:

Mine doesn't worked instead it worked by

<scripttype="text/javascript"src="js/chosen.jquery.js" ></script><script>`Enter only enter chosen related code here`</script>

Solution 3:

This can sometimes happened because the confliction of the jquery library. Define your JavaScript inside no conflict. https://api.jquery.com/jquery.noconflict/

Post a Comment for "Chosen Jquery Plugin Not Functional."