- Posts: 11
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
var templatePath = $('head link[href*="template.css"]').attr('href').replace(/template.css/, '');
// Apply images to Group 1 $("input#answerYYYYXYYYYXYYYYYY").imageTick({
// Image to use as a selected state of the checkbox
tick_image_path: templatePath+"Blankbutton.png",
// Image to use as a non-selected state
no_tick_image_path: templatePath+"Blankbutton.png",
// Class to apply to all checkbox images that are dynamically created
image_tick_class: "checkboxes"
});
});
</script>
You could do that with with JavaScript but without knowing the structure of your template it's impossible to give a code example.My next question - is it possible to randomize the answers within groups and then randomize between groups? Thanks so much!