You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Simulate some frequent event like DOMNodeInserted
setInterval(function() {
box.trigger('frequentEvent')
}, 500); // not working if this is lower than a delay
box.on("frequentEvent", function() {
$(this).append('fire ')
}, 300); // works without this delay
Here's a pen
The text was updated successfully, but these errors were encountered: