Skip to content

Instantly share code, notes, and snippets.

@spivurno
Created January 26, 2018 14:44
Show Gist options
  • Save spivurno/b81ca72ce80c662169a105526354abcc to your computer and use it in GitHub Desktop.
Save spivurno/b81ca72ce80c662169a105526354abcc to your computer and use it in GitHub Desktop.
Gravity Perks // GP Copy Cat // Copy Other Radio Button
<script>
/**
* Gravity Perks // GP Copy Cat // Copy Other Radio Button
* http://gravitywiz.com/documentation/gravity-forms-copy-cat/
*/
gform.addFilter( 'gppc_copied_value', function( value, $targetElem, field ) {
if( $targetElem.attr( 'id' ).split( '_' ).pop() == 'other' ) {
value = jQuery( '#input_' + field.sourceFormId + '_' + field.source + '_other' ).val();
}
return value;
} );
</script>
@duplaja
Copy link

duplaja commented Jan 26, 2018

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment