Quantcast
Channel: Topics in Category: Can I do this with LimeSurvey? - LimeSurvey forums
Viewing all articles
Browse latest Browse all 17529

Timer - by: tpartner

$
0
0
You should be able to place a short-text question with a timer in each group and hide them with CSS or JavaScript.

To hide a question with CSS, add something like this too the end of template.css, where 1234 is the question ID:
#question1234 {
	display: none;
}

To hide a question with JavaScript, set up your survey to use JavaScript and add this to the question source:
<script type="text/javascript" charset="utf-8">
	$(document).ready(function() {
		$('#question{QID}').hide();
    });
</script>

Viewing all articles
Browse latest Browse all 17529

Trending Articles