Possible Duplicate:
Jquery Chosen focus on page load (onLoad?)
i am using a jQuery plugin chosen (http://harvesthq.github.com/chosen/) to create more useful select boxes.
however, jQuery focus event is not working with this plugin.
my html code:
<select class="product">
<option value="1">Product One</option>
<option value="2">Product Two</option>
</select>
and javascript code:
$('.product').chosen().focus();
it is not focusing the element..
here is my jsFiddle: http://jsfiddle.net/JigneshManek/queZ6/11/
is there any other method or event specified in the plugin to focus the element?