Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
    <div id="toolbar">
        Click between these (no blur)
        <input>
        <input>
    </div>
    <br />
    <div> 
        Go From ^ to here -> (real blur)
        <input>
        
        Go From ^ [CLICK HERE] (Nothing)
    </div>
    
</body>
</html>
 
function isDescendant(parent, child) {
     var node = child.parentNode;
     while (node != null) {
         if (node == parent) {
             return true;
         }
         node = node.parentNode;
     }
     return false;
}
document.getElementById('toolbar').addEventListener('blur',function(e){
    
    if ( e.relatedTarget && !isDescendant(this, e.relatedTarget)) {
        console.log('real blur');
    }
    else {
        console.log(e);
        console.log('sibling, or unknown');
    }
    
}, true);
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
dayjopro
0viewers