Need a quick help. I like to close the option drop down when you hover the other div element.
So first open the drop down and hover the red element on right side, while hover over red element i want to close the drop down.
Thanks in advance.
select {
width: 200px;
display: inline-block;
}
div {
width: 50px;
height: 50px;
background: red;
display: inline-block;
}
<select>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<div></div>