I have a 4 page (multi-step) form and some fields are repeated from page to page: a name field a date field
What I have done so far: The following code has worked for copying from 26_9 to 26_452_(1 to 4). The following code has worked for copying from 26_9 to 26_453_2 (first name) and 26_453_4 (last name).
The code is: jQuery(function ($) { $('.quform-input-26_9 input').blur(function () { $('.quform-field-26_452_1').val($('.quform-field-26_9_1').val()); $('.quform-field-26_452_2').val($('.quform-field-26_9_2').val()); $('.quform-field-26_452_3').val($('.quform-field-26_9_3').val()); $('.quform-field-26_452_4').val($('.quform-field-26_9_4').val()); $('.quform-field-26_453_2').val($('.quform-field-26_9_2').val()); $('.quform-field-26_453_4').val($('.quform-field-26_9_4').val()); });
Question: How to add code to copy date from 26_389 to 26_318?