Goto web page upon end of questionnaire

From Catglobe Wiki
Revision as of 09:31, 12 April 2017 by Phamhuuphucgopenid (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

If you want to go to an other web page when you completed the questionnaire,

you need to set-up as below:

- Go to Questions/Questionnaire's javascript menu on questionnaire editor


Selectmenu.png


- Put js code to them

AnswerSheet.bind('afterCompleted', function(ev, answerSheet, questionnaire) {
 window.location ="https://www.w3schools.com"; // Fill Your Web Page Address here
});


Aftercompleted.png