-
-
Save muks999/49763d68055eb932f3871b11e922863b 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