- Posts: 3
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
$(document).ready(function() { var originalText = 'This question is mandatory. Please complete all parts.'; var newText = 'Please answer all questions.'; $('.errormandatory').filter(function() { return $.trim($(this).text()) == originalText; }).text(newText); $('.errormandatory').show(); });
.errormandatory { display: none; }