how to get the equivalent of "button counts," perhaps by having people press the button each time a target thoughts goes through their mind for a limited period (e.g., 3 minutes)
Solved
How would I count the amount of times participants pressed a button?
Best answer by TomG
Use a click event. For example:
var count = 0;
jQuery("#myButton").click(function() {
count++;
Qualtrics.SurveyEngine.setEmbeddedData("count", count);
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
