Home › Forums › Quform WordPress › form data preview page – Textfield
We worked according to their instructions “Adding a form data preview page” and included the following javascript code:
jQuery(function ($) { $('.quform-input-8_188 input').blur(function () { $('#name-value').text($('.quform-field-8_188').val()); }); $('.quform-field-8_189').blur(function () { $('#email-value').text($(this).val()); }); $('.quform-field-8_171').change(function () { $('#platz1').text($(this).val()); }); $('.quform-field-8_172').change(function () { $('#platz2').text($(this).val()); }); $('.quform-field-8_173').change(function () { $('#platz3').text($(this).val()); }); $('.quform-field-8_177').blur(function () { $('#anmerkungen').text($(this).val()); }); });
However, the last field is a textarea field (anmerkungen). This works but all punctuation and paragraphs are removed. Is there any way to change the code to get these?
You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
Very big thank you!!!