I have a jQuery UI tooltip and whenever I click the select inside of the tooltip it closes the tooltip.
Maybe it's related to this: mouseenter mouseleave and a select
this doesn't work:
$(".select_test").on("click", function(ev) {
ev.stopPropagation()
});
JSFiddle: http://jsfiddle.net/bXxdH/2/
I know that it is clearly visible that the select is bigger expanded than the tooltip high is.
Here is a screenshot from my site: http://prntscr.com/1dvgy3 It is also happening on my site even though the select is not too big.
Thanks.