- Posts: 3
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
$(document).ready(function() { if ($('.statisticstable').length > 0) { $('.statisticstable td').filter(function() { return $.trim($(this).text()) == 'No answer'; }).closest('tr').hide(); } });
Have a look to source code.... Maybe correct related html elements are thead...not tdlando wrote: how i could get rid of the "Count of Answers ?
return $.trim($(this).text()) < '999';
return $.trim($(this).text()) < 999;