Putting html in field titles

I’ve been trying to put HTML in a field title (a radio field in particular) because I’d like to link to a lightbox, and it keeps escaping the characters no matter what I try. Any ideas how I can use html in field titles?

Hi!

Do you use Forms Designer or Plumsail Forms?

Please try the following steps (in Plumsail Forms):

  1. Add a unique CSS class to your Radio field in Forms client, i.e. “radio-field”

  2. Add this code snippet into your “spRendered” or “rendered” event handler:

     var html = $('.radio-field').find('label').html();
     $('.radio-field').find('label').eq(0).html('<a href="your link">'+html+'</a>');