- Posts: 43
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ // Define variables var thisQuestion = $('#question{QID}'); var countries = { 'en': 'Canada', 'de': 'Deutschland' }; // Loop through the dropdown options $('.answer-item select option', thisQuestion).each(function(i) { var thisLang = $(this).attr('value'); // Modify the label if(countries[thisLang] !== undefined && countries[thisLang] !== null) { $(this).text(countries[thisLang]); } }); }); </script>