I\'m using the Jquery Chosen plugin on a select box, however I\'d like to focus this on page load. I\'ve used the following code to focus a text input:
onLoa
If your using the first example (standard select box) you can use:
jQuery(document).ready(function($) { $('.chzn-drop .chzn-search input[type="text"]').focus(); })