JSFiddle - React, Tailwind, and code Playground

by kwicher

HTML

<div id="outerID">
  <input id="inner1" type="text" value="button1"/>
  <input id="inner2" type="text" value="button2"/>
  <table>
    <tbody>
      <tr>
       <td>
         <input id="inner3" type="text" value="button3"/>
       </td>
      </tr>
    </tbody>
  </table>
</div>

JavaScript

jQuery('#outerID').live('blur', function () {
    alert('fire');
         });