How can I trigger second hover function?
$('#adm1n-toolbar').hover(
function() {
...
},
function() {
...
}
);
$('#adm1n-toolbar-content select').change(function(e) {
...
$('#adm1n-toolbar').trigger('mouseout');
});
mouseout or mouseleave does not work.
It works just fine if you use
mouseleavewhich is whathoveruses behind the scenesdemo: