jQuery: lose focus on the element
jquery
Solution
You can use the `blur()` method, like this:
$("#adm1n-toolbar form select").change(function() {
$(this).blur();
}); // after something has been selected
Problem
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.