I have an absolute positioned div which works like a tooltip. On mouse over of an element it shows and then hides at mouse out. I have few elements i
This works (using jquery - should be called on the mouseover event):
var $select = $("select").blur();
if ($.browser.webkit) {
$select.hide();
setTimeout(function() {
$select.show()
}, 5);
}
blur seems to suffice in IE7-9 and FF. Webkit doesn't respect this (bugs are filed against this), so the solution seems to be to hide and show the select box quickly.