On document ready I attach this event handler to all elements with class bubbleItemOff. My problem is that some of the bubbleItemOff elements are created dynamically after t
You can use jQuery on method in delegated-events approach:
$(".parentItem").on("mouseenter", ".bubbleItemOff", function(e) { // });
Here .parentItem refers to any parent of .bubbleItemOff.
.parentItem
.bubbleItemOff