Conversation
supportIs it possible to add separate tooltip (i) for each choice? I mean Radio like in this example: choice A (i) choice B (i) choice C (i)
Hello @hyzwar Unfortunately, in the current plugin version, the instructions for users affect the fields, not the choices separately. However, you can emulate this by passing the instruction for users as part of the choice text itself. Please follow the instructions below: 1. includes the instructions for users as part of the choices texts, like First Choice <span class="cff-help-icon" data-uh="Instructions first choice"></span> Second Choice <span class="cff-help-icon" data-uh="Instructions second choice"></span> Third Choice <span class="cff-help-icon" data-uh="Instructions third choice"></span> 2. Insert an “HTML Content” field in the form, tick the choice to support scripts, and enter the following piece of code as its content: <script> fbuilderjQuery(document).on('formReady', function(){ fbuilderjQuery('[data-uh]').each(function(){ fbuilderjQuery(this).attr('uh', fbuilderjQuery(this).attr('data-uh')); }); }); </script> Please watch the video in action: https://cff.dwbooster.com/resources/customer-support/2026/02/24/video.mp4 Best regards. This reply was modified 3 months ago by CodePeople2 .
Godlike! Thx a lot 😉
Hello @hyzwar Unfortunately, in the current plugin version, the instructions for users affect the fields, not the choices separately. However, you can emulate this by passing the instruction for users as part of the choice text itself. Please follow the instructions below: 1. includes the instructions for users as part of the choices texts, like First Choice <span class="cff-help-icon" data-uh="Instructions first choice"></span> Second Choice <span class="cff-help-icon" data-uh="Instructions second choice"></span> Third Choice <span class="cff-help-icon" data-uh="Instructions third choice"></span> 2. Insert an “HTML Content” field in the form, tick the choice to support scripts, and enter the following piece of code as its content: <script> fbuilderjQuery(document).on('formReady', function(){ fbuilderjQuery('[data-uh]').each(function(){ fbuilderjQuery(this).attr('uh', fbuilderjQuery(this).attr('data-uh')); }); }); </script> Please watch the video in action: https://cff.dwbooster.com/resources/customer-support/2026/02/24/video.mp4 Best regards. This reply was modified 3 months ago by CodePeople2 .
Godlike! Thx a lot 😉