Tips

From Addiction Research Laboratory
Redirect page
Jump to: navigation, search

Enter/Return Key for Next question

To use the Enter/Return Key instead of clicking the Next or >> Button to continue to the next page or question first select your question in the Qualtrics editor. Click on he purple button with the gear (Advanced Question Options), and select Add JavaScript. Past this code into the JavaScript window:

var that = this;

 Event.observe(document,'keydown',function(e){
 if (e.keyCode == 13) //'r' was pressed
 {
 that.clickNextButton();
 }

 });

Branching

Tutorial video on branching Branching can be useful if you want participants to skip or jump to questions based on the responses they give to a certain question. Branching is like display logic for blocks. Create a branch in your Survey Flow with the condition that if the respondent answers a question a certain way, they will see whatever block you place under the branch.


FAQ

How can I take my survey multiple times on the same computer?

You can use the anonymous link to your survey on multiple computers at multiple times. As long as you leave the "Save and Continue" and "Prevent Ballot Box Stuffing" options unchecked in your survey options then you can take it over and over.

Is there a way to have one button on every page (eg near the Next/Previous buttons) that allows me to skip to the same specific question every time I click it (ie if the interview ends early)?

There is not a way to put a button on every page that allows you to submit the survey at any time. You can, however, close the browser at any time because the data saves every time the "next" button is pushed. You can then close out all 'partial' responses.