Hi
@LKing!
It looks like you may be asking about custom programming/code. We actually have a
Developer Corner in the community that is reserved for these types of questions. I have moved your question into this section instead so coders and programmers are more likely to answer your question.
P.S. They might assume that you already have a basic knowledge of programming and how to integrate it into Qualtrics. If you do not, we recommend checking out
W3Schools and our pages on
Adding Custom CSS and
Adding JavaScript to get a basic understanding!
@LKing You may not need any code for this at all. You could just set the survey options to record responses in progress after however long you'd like (seems like 24 hours may be perfect for this). After they click in, their response will be a partial response for that amount of time, after that amount of time has passed it will be automatically recorded with just their selected answer for the first question.
Thank you
@AnthonyR , I really appreciate your response. Before I posted, I tested this out and from what I could tell the response was not recorded. I went into the responses in progress to check, closed them, and viewed the recorded response. As far as I could tell, the response was not captured, but I'll take another look. Thanks again!
>
@LKing said:
> Thank you
@AnthonyR , I really appreciate your response. Before I posted, I tested this out and from what I could tell the response was not recorded. I went into the responses in progress to check, closed them, and viewed the recorded response. As far as I could tell, the response was not captured, but I'll take another look. Thanks again!
If it isn't recording properly then it is definitely worth reaching out to support, that is the intended functionality!
@LKing,
The following code will only click the Next Button if the question has already been answered:
```
Qualtrics.SurveyEngine.addOnReady(function() {
if(jQuery("#"+this.questionId+" input:checked").length > 0) this.clickNextButton();
});
```
Thanks
@AnthonyR - I reached out to support and they referred me here. I guess they weren't able to help b/c I specified I was using the inline functionality outside of qualtrics... Anyhow, really appreciate your willingness to help out.
@TomG - Thank you very much sir! Your code worked perfectly. You truly are deserving of your Wizard title. +10 points to Gryffindor.
You have made my day. :)
Thanks again!