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
When trying to apply custom event handlers, sometimes the html isn't ready and they aren't attached.
$('.rating-input').on('mouseenter','i',function(){// do some cool stuff});
This happens due to the asynchronous nature of the execution on the code.
I think that the best way to fix it is to add some custom events to the library like:
[ ] Ready - After html rendered
[ ] Mouse over
[ ] Mouse out
[ ] Mouse click
I can add there handlers if my changes are accepted..
The text was updated successfully, but these errors were encountered:
When trying to apply custom event handlers, sometimes the html isn't ready and they aren't attached.
This happens due to the asynchronous nature of the execution on the code.
I think that the best way to fix it is to add some custom events to the library like:
[ ] Ready - After html rendered
[ ] Mouse over
[ ] Mouse out
[ ] Mouse click
I can add there handlers if my changes are accepted..
The text was updated successfully, but these errors were encountered: