I tried running the code from the author to make chosen.js work with jquery validation engine
Here is the authors code
I used the same code to test, but it is not working
This is my code
jQuery(document).ready(function() {
                // binds form submission and fields to the validation engine
                jQuery("#formID").validationEngine({
                    prettySelect : true,
                    useSuffix: "_chzn"
                    //promptPosition : "bottomLeft"
        });
        $("#country").chosen({
                    allow_single_deselect : true
        });
});
Here is my fiddle
I don't know whats wrong in my code?
