Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<div id="parent">fdgfd
  <div>content</div>
  <select name="" id="">
    <option value="">1</option>
    <option value="">2</option>
    <option value="">3</option>
    <option value="">4</option>
    <option value="">5</option>
  </select>
</div>
<div id="result">out</div>
 
document.getElementById('parent')
  .addEventListener('mouseout', function() {
    document.getElementById('result').innerHTML = 'out'
  })
document.getElementById('parent').addEventListener('mouseover', () => document.getElementById('result').innerHTML = 'in')
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers