Need to somehow lose focus on <select>
after the <option>
has been selected.
http://jsfiddle.net/MnAdN/
Without removing this focus check.
if (... !$('#adm1n-toolbar form select').is(':focus'))
Toolbar should be visible while user is doing selection, and should be hidden when selection is done.
Thanks.
You can use the blur()
method, like this:
$("#adm1n-toolbar form select").change(function() {
$(this).blur();
}); // after something has been selected
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With