I have inputs from single line fields that add dynamic text to a custom html within a form. After the form is approved by a series of managers/directors a PDF copy gets filed into a folder within our Repository however the PDF is missing all the dynamic text in the html section.
The dynamic text is shown on the forms that pass between managers/directors for approval but disappears on the final PDF copy of the approval. Does anyone know how this can be resolved as our HR dept wants to keep a copy of the form with all the legalese and fancy inputs.
Thank you in advance
This is a snippet of the code that is passing the field value into the html section:
$(document).ready(function(){ $("#Field2").change(function(){ readename(); }); function readename() { if($("#Field2").is("input")) $("#ename").text ($("#Field2").val()); else $("#ename").text ($("#Field2").text()); }