I have a form that contains the following JS.
This JS takes data from a field populated from a lookup and writes it into a Custom HTML field. (it's actually an image)
The form submits with no issues but suspends when trying to write the form to the Repository (Unable to find PDF Generator).
If I remove the JS, the form saves to the repository with no issues.
$(document).ready(function() {
$('.frame1').remove();
var imgsrc = $('#q22 textarea').val();
$('#q24').append("<iframe img src='"+imgsrc+"' width=200px height=70px name='frame1' id='frame1'class='frame1'></iframe>");
$('#Field24').trigger('change');
});