select close
by Park Mino
JavaScript
$(document).on("click",function(e) {
var _this = $('.option'),
_boxSelect = _this.parent('div');
if($(e.target).closest('.option').length == 0) {
_boxSelect.removeClass('open');
}
});