Skip to content

Instantly share code, notes, and snippets.

@Tynael
Created February 2, 2017 10:06
Show Gist options
  • Save Tynael/0a8f0351b185861c81575210af7f2bf5 to your computer and use it in GitHub Desktop.
Save Tynael/0a8f0351b185861c81575210af7f2bf5 to your computer and use it in GitHub Desktop.
Mayie addToCart
<!-- RA ADD TO CART -->
<script>
var _ra_cartBtn = document.getElementById('add');
_ra_cartBtn.addEventListener('click', function(){
if (_ra.ready !== undefined) {
_ra.addToCart({{product.id}}, 1, false, function() {
console.log("The information have been sent");
});
}
});
</script>
<!-- ./RA ADD TO CART -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment