- Posts: 14385
- Thank you received: 2595
Ask the community, share ideas, and connect with other LimeSurvey users!
Arg .....Mazi wrote: Denis, I was just checking this nice solution at the link you provided ( demonstration.sondages.pro/54895/lang-en ) but it doesn't seem to work anymore. I can't find the mentioned adjustment at the template.js file at demonstration.sondages.pro/upload/templa...flatblue/template.js .
Did this get overwritten accidentally?
Can you post an updated link?
<script> $(function(){ var $nodiv = $('div[style="display: none;"]'); $('body').on('click',function(){ var $nodivQwrap = $('table.question-wrapper', $nodiv).hide(); setTimeout(function(){ $nodiv.each(function(){ if($(this).css('display') != 'none'){ $(this).find('table.question-wrapper').show("slow") } }); },50); }); }); </script>