- Posts: 22
- 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 this question
var thisQuestion = $('#question{QID}');
// Insert a new row in the table head
$('table.subquestions-list thead', thisQuestion).prepend('<tr>\
<td></td>\
<th colspan="3">Low priority</th>\
<th colspan="3">Medium priority</th>\
<th colspan="3">High priority</th>\
</tr>');
});
</script>
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { // Identify this question var thisQuestion = $('#question{QID}'); // Insert a new row in the table head $('table.subquestion-list thead', thisQuestion).prepend('<tr>\ <td></td>\ <th colspan="3" class="text-center">Low priority</th>\ <th colspan="3" class="text-center">Medium priority</th>\ <th colspan="3" class="text-center">High priority</th>\ </tr>'); }); </script>