JSFiddle - React, Tailwind, and code Playground

HTML

<form id="test">
    <label><input type='file'/>this is a test</label>
</form>

CSS

#test {
    width: 100px;
    height: 100px;
    background: #ccc;
}

JavaScript

$(document).ready(function() {   
    $('#test').live('focusout', function() {        
          alert('blur e----vent!');    
    }); 
    $('#test').live('blur', function() {        
          alert('blur event!');    
    });     
});