Gravity Forms – Copy field values from 1 field to another
-
Has anyone been able to get this working?
I tried the jquery solution outlined here:
https://gist.github.com/tnorthcutt/1677531ie:
jQuery(document).ready(function($) { $('input#choice_13_1').click(function() { if($(this).is(':checked')) { $('#input_2_12_1').val($('#input_2_2_1').val()); $('#input_2_12_2').val($('#input_2_2_2').val()); $('#input_2_12_3').val($('#input_2_2_3').val()); $('#input_2_12_4').val($('#input_2_2_4').val()); $('#input_2_12_5').val($('#input_2_2_5').val()); }; }); });
But I cant seem to get it working.
Has anyone else succeeded?
- The topic ‘Gravity Forms – Copy field values from 1 field to another’ is closed to new replies.