Form Fields
- Page 1
- Text field
- Page 2
- HTML Block (contains javascript)
- HTML Block (contains paragraph with element to insert the value obtained from page 1
- Text Field (value obtained from page 1 is inserted into this field.
The Code
HTML Block 1 Javascript
<script type="text/javascript">
jQuery(document).on('gform_post_render', function (event, form_id, current_page) {
// code to trigger on form or form page render
if (current_page == 2) {
// Get the value from page 1
var x = document.getElementById("input_7_14").value;
// form_id == 7
// field id == 14
// this is the field on page 1
// field id == 14
document.getElementById("bs_insert_word").innerHTML = x;
document.getElementById("input_7_9").value = x;
}
})
</script>
HTML Block 2 with paragraph setup to include input from form 1
The word '<span id="bs_insert_word"></span>' from page one has been inserted in this paragraph.
Screenshot of form
