Created
February 2, 2017 10:06
-
-
Save Tynael/0a8f0351b185861c81575210af7f2bf5 to your computer and use it in GitHub Desktop.
Mayie addToCart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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