- Posts: 11
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
I think it must be reported, it work directly in 3.X and before(Interestingly, using {LANG} doesn't work if I use it directly in the equations but working around it by creating a hidden free text question that loads {LANG} into it and then using that question works.)
Please Log in to join the conversation.
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ $('.other-text-item').hide(); $('.othertext-label-checkox-container').hide(); }); </script>
<style type="text/css"> .other-text-item, .othertext-label-checkox-container { display:none; } </style>
Please Log in to join the conversation.
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ var lang = "{LANG}"; if(lang!='de') { $('.other-text-item').hide(); $('.othertext-label-checkox-container').hide(); } }); </script>
Please Log in to join the conversation.