How to open Chosen via JavaScript?

html, javascript, jquery, jquery-chosen, user-interface

Solution

This solves the problem,

just make sure chzn-select is the ID of your select.

chzn-drop will stay opened after users click on an option:

        $('#chzn-select').change(function(event)
        {
            $('.chzn-drop').css('left', 0);
        });

Problem

I need to open the Chosen dropdown via JavaScript so users do not have to click on the select to show it, how can this be done?

Original source