Reply To: Append Selection Across Pages

Home Forums Quform WordPress Append Selection Across Pages Reply To: Append Selection Across Pages

#29153
justdiveworld
Participant

Hi Ally,

I have done as your instructed and used the code from this post and appended 1_3 and 1_4 with the relevant values however it doesn’t seem to work. Any ideas?

jQuery(function ($) {
var $radio1 = $(‘.quform-field-3_4’),
$radio2 = $(‘.quform-field-3_179’);

$radio1.click(function () {
var value = this.value;

$radio2.filter(function () {
return this.value === value;
}).prop(‘checked’, true).triggerHandler(‘change’);
});

$radio2.click(function () {
var value = this.value;

$radio1.filter(function () {
return this.value === value;
}).prop(‘checked’, true).triggerHandler(‘change’);
});
});

Thanks, Denis

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