Created
August 11, 2017 05:55
-
-
Save artikus11/5747ea04411cfa5f5bbe30cd05bf9c78 to your computer and use it in GitHub Desktop.
Подключение целей из метрики в теме Divi на просто кнопку, кнопку в призыве и кнопку в слайдере
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
XXXXXXX - номер счетчика | |
TARGET_NAME - идентификатор цели | |
<script> | |
jQuery(document).ready(function ($) { | |
$('#buy').click(function () { | |
yaCounterXXXXXXX.reachGoal('TARGET_NAME '); | |
console.log('цель 1'); | |
}); | |
$('#download').click(function () { | |
yaCounterXXXXXXX.reachGoal('TARGET_NAME '); | |
console.log('цель 1'); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment