Advanced Question Editing
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>
Related Articles
Preview Question
Preview a question There a two ways to preview a question: (1) from the Question summary page or (2) while editing a question. 1. Preview a question from the question summary page You can access the Question summary page from the (a) Settings tab or ...
Import a Question
Importing a question The following steps demonstrate how to import a question to a survey. 1. From within a survey, click the Structure tab. 2. From the Create question page, click Import question at the top of the page. The Import a question options ...
Style a Question
Styling questions with CSS Styling of questions using CSS has become much easier. Each question type now has a unique class. The mandatory questions have an additional mandatory class. Please refer to the Styling a question with CSS section for ...
Question Summary
Question summary The page is divided into three sections. Question toolbar: You will find the following options on the toolbar: Preview survey: Click to preview the entire survey. Preview question group: Click to preview only the current question ...
Question Settings
Question settings Note: The question settings panel is displayed when you add/edit a question and is located on the right. The settings displayed may vary based on the question type selected. Please refer to the screenshot below for a basic overview ...