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

Random Media Loading - by: tpartner

$
0
0
You can use JavaScript to load the inputs of a multiple-numeric question and then use those values in your paths to the videos.

This will load a question with 10 random numbers between 1 and 2000:

<script type="text/javascript" charset="utf-8">
	$(document).ready(function() {
 
		// Identify this question
		var qID = {QID};
		var thisQuestion = $('#question'+qID);
 
		// Build an array of 10 random numbers between 1 and 2000
		var numbers = [];
		while(numbers.length < 10){
			var randomnumber = Math.ceil(Math.random()*2000)
			if(numbers.indexOf(randomnumber) > -1) continue;
			numbers[numbers.length] = randomnumber;
		}
 
		// Load the question
		$(numbers).each(function(i, value) {
			$('input[type="text"]:eq('+i+')', thisQuestion).val(value);
		});
	});
</script>

Sample survey attached:

File Attachment:

File Name: limesurvey_survey_214844_2017-06-07.lss
File Size: 21 KB

Viewing all articles
Browse latest Browse all 17529

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>