Reputation: 5228
I am using the jquery selectbox plugin, and my problem is that I want to make the drop down list disappear when I move the mouse outside the selectable area.
do you have any idea if this is possible?
thank you!
Upvotes: 0
Views: 335
Reputation: 146350
On line 148 of the select box code there is this:
.bind('blur.selectBox', function() {
if( !control.hasClass('selectBox-active') ) return;
control.removeClass('selectBox-active');
select.trigger('blur');
});
You have to add on a mouseout
Upvotes: 0