- Posts: 4
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Could you explain what a completion code is? Amazon MTurk is not a topic that often here.nikinew wrote: to add a functionality that generates a completion code for the survey that is displayed in the end message of my survey.
nikinew wrote: id a unique random number (ideally a 6 digit number at the very end of the survey) and then enters this number into a form that is provided on MTurk.
That depends on how you generate the number. E.g. if you use JavaScript in that question, you may need to hide the question via JavaScript. Hiding the question via LimeSurvey settings is preventing the javascript to get executed.nikinew wrote: Thus, I can display the number either twice or not at all. Do you have a workaround for this?
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#question{QID}').hide(); }); </script>