Hello! I know this has been answered a few times but I am still struggling with recording amount of times a participant has clicked on a custom button I have - in fact I have 10 custom buttons and I want to see which/how many of those buttons were clicked.
Here is my html:
Here is my JS:
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("#button1").click(function() {
jQuery("#infodiv1").toggle();});
jQuery("#button2").click(function() {
jQuery("#infodiv2").toggle();});
jQuery("#button3").click(function() {
jQuery("#infodiv3").toggle();});
});
If anyone could assist I would be sincerely grateful!