I want to know how to trigger the onClick event of any select(html combobox element).
onClick
select
I tried to do $(\'#MySelect\').click();
$(\'#MySelect\').click();
Programatically triggering a click event will only run the defined click handler for that element. As you say in the comments, you have no such method defined, therefore no action will take place.
click