Here I am trying to set title dynamically to the native drop-down to show tool-tip, but when I am trying to set title on hover I can't select any value from drop down options. That drop down is getting closed.
$(container).on("hover","select", function (e) {
$(this).attr("title",$(this).val());
});
What can be the reason for this?