How to edit the tip for one specific question?
Some types of questions (like numerical questions) come with a default hint/tip
You can customize the tip of a specific question by using the below script
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID} .ls-question-message.ls-em-tip.em_default.ls-em-success').html('<i class="fa fa-exclamation-circle" aria-hidden="true"></i> custom tip text');
});
</script>
Question ID needs to be replaced by the specific question ID
How to edit the tip of all group's questions?
You don't need to specify the question ID here, use the below script instead
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('.ls-question-message.ls-em-tip.em_default.ls-em-success').html('<i class="fa fa-exclamation-circle" aria-hidden="true"></i> custom tip text');
});
</script>