Hello @sitetouten1
I’m sorry, but I’m not sure the reason why to use a textarea field and not an “HTML Content” field. I’ll try to describe the process with a hypothetical example:
Assuming there is a calculated field in the form with the equation: fieldname1+fieldname2
and you want to display the result into an “HTML Content” field.
1. Enter a DIV tag into the content of the “HTML Content” field with an unique class name. For example: <div class="result-here"></div>
2. Edit the equation associated to the calculated field as follows:
(function(){
var result = fieldname1+fieldname2;
jQuery('.result-here').html(result);
return result;
})()
3. Finally, as the calculated field is being used as auxiliary, you can hide it by ticking a checkbox in its settings.
Best regards.