Button Click Goal Setup
-
Hi,
I would like to set up a goal which is a button click. The button is part of another plugin and has the following class: .p3d-btn.p3d-btn-primary:nth-child(2)
However, trying to use this class in the Burst goal setup I am getting an error:
The character '.p3d-btn.p3d-btn-primary:nth-child(2)' can not be used.Alternatively, I can use a JS to fire each time the button is clicked:
jQuery(document).ready(function(){
jQuery('.p3d-btn.p3d-btn-primary:nth-child(2)').on('click', function(){
console.log('Next button is clicked');
})
});But how to pass it to the Burst plugin?
Would appreciate your help
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Button Click Goal Setup’ is closed to new replies.