- Posts: 9
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
I tried to add this code to question editor:
But your cells do not have a code "1", nor "2", but "A1", "A5", "A4"...(where "cell_1" means, the cell with answer code "1")
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#question{QID} tr.answers-list:eq(0) .answer_cell_A1 *').attr('title','This is cell 1,1'); $('#question{QID} tr.answers-list:eq(0) .answer_cell_A5 *').attr('title','This is cell 1,2'); $('#question{QID} tr.answers-list:eq(0) .answer_cell_A4 *').attr('title','This is cell 1,3'); $('#question{QID} tr.answers-list:eq(0) .answer_cell_A3 *').attr('title','This is cell 1,4'); ...