Reply To: Copying data from a field to another (same form)

Home Forums Quform WordPress Copying data from a field to another (same form) Reply To: Copying data from a field to another (same form)

#30262
carlichy
Participant

Issue solved!

The solution in this topic

I write my code for someone need it as an example (you have to use in the Custom JavaScript plugin option):

jQuery(function ($) {
$(‘.quform-field-7_8’).blur(function () {
$(‘.quform-field-7_65’).val($(this).val());
});
$(‘.quform-field-7_52’).blur(function () {
$(‘.quform-field-7_67’).val($(this).val());
});
$(‘.quform-field-7_11’).blur(function () {
$(‘.quform-field-7_58’).val($(this).val());
});
});

Be inspired. © 2024 ThemeCatcher Ltd. 20-22 Wenlock Road, London, England, N1 7GU | Company No. 08120384 | Built with React | Privacy Policy