Skip to content

Instantly share code, notes, and snippets.

View mthsaguiar's full-sized avatar
🎯
Focusing

Matheus Aguiar Amaral mthsaguiar

🎯
Focusing
View GitHub Profile
function runABTest() {
const checkoutBtn = document.querySelector('.cart-drawer-button-checkout')
if (window.innerWidth < 768) {
if(checkoutBtn) {
checkoutBtn.addEventListener('click', function() {
//tracking code here...
})