We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! I want to know if you help to understand how events are working on vanilla js?
$(document).on('cart.requestComplete', function(event, cart) { $('#counter').html(cart.item_count); });
This way is not working:
document.addEventListener('cart.requestComplete', function(event, cart) { // Event handling here. console.log(cart) })
Thank you
The text was updated successfully, but these errors were encountered:
Yeah, this isn't working for me either.
Sorry, something went wrong.
Hello, yes, I'm also getting the same issue. Is there any fix for this?
No branches or pull requests
Hello!
I want to know if you help to understand how events are working on vanilla js?
This way is not working:
Thank you
The text was updated successfully, but these errors were encountered: