Hello @rotertal
Yes, that’s possible. For example, assuming you want to display the fieldname1 and fieldname2 values in form A into two tags on the page (outside the form) with the class names container-a and container-b, respectively, the fields fieldname1 and fieldname2 in form B into the tags with the class names container-c and container-d respectively.
Insert a calculated field in form A as an auxiliary, you can configure it as hidden by ticking a checkbox in its settings, and enter the equation:
(function(){
fbuilderjQuery('.container-a').html(fieldname1);
fbuilderjQuery('.container-b').html(fieldname2);
})()
And insert a calculated field in form B and enter the equation:
(function(){
fbuilderjQuery('.container-c').html(fieldname1);
fbuilderjQuery('.container-d').html(fieldname2);
})()
Best regards.