Try   HackMD

Delegating events in JQuery

/* when document is ready, delegate an event, 
* even after the element is rendered
* after the page is loaded
*/
$(document).ready(function() {
    
  $(document).on('mouseover', '.your-child-element', function() {
    $(this).focus();  // <- $(this) will return the current element
  });
});