- Posts: 4
- 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(){ // Identify the question var q1ID = {QID}; var q1 = $('#question'+q1ID+''); $('.question-item:eq(0)', q1).before('<li style="font-weight:bold;">Sub-Label 1</li>'); $('.question-item:eq(5)', q1).before('<li style="font-weight:bold;">Sub-Label 2</li>'); $('.question-item:eq(10)', q1).before('<li style="font-weight:bold;">Sub-Label 3</li>'); }); </script>