In jquery when click the other element that triggers the dropdown list and to show the option . here is the script code
$(document).ready(function(){
$("select").on("click",function(){
alert("ee");
});
$("#element").on("click",function(){
$("select").trigger("click");
});
});
In this code it shows the alert when click the element but the drop down values is not open.