-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Hides the Next Button for pre-defined amount of time and then displays it. | ||
|
||
Qualtrics.SurveyEngine.addOnload(function() | ||
{ | ||
|
||
this.hideNextButton(); //Hide the question as soon as the page loads | ||
|
||
}); | ||
|
||
Qualtrics.SurveyEngine.addOnReady(function() | ||
{ | ||
|
||
var delayTime = 6000 //This is the time of delay | ||
var that = this; | ||
setTimeout(function(){that.showNextButton();}, delayTime); // Function to show the next button | ||
|
||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Hides the Question and Choices for pre-defined amount of time and then displays it. | ||
|
||
Qualtrics.SurveyEngine.addOnload(function() | ||
{ | ||
this.getQuestionContainer().hide(); // Hide the question as soon as the page loads | ||
|
||
}); | ||
|
||
Qualtrics.SurveyEngine.addOnReady(function() | ||
{ | ||
|
||
var delayTime = 6000 //This is the time of delay | ||
var that = this; | ||
setTimeout(function(){that.getQuestionContainer().show()}, delayTime); // Function to show the question | ||
|
||
|
||
}); |