Last active
November 29, 2021 19:42
-
-
Save spivurno/96793af8d1523621a082d5579dd66cc7 to your computer and use it in GitHub Desktop.
Gravity Perks // GP Copy Cat // Copy Label (instead of Value)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Gravity Perks // GP Copy Cat // Copy Label (instead of Value) | |
http://gravitywiz.com/documentation/gravity-forms-copy-cat/ | |
Instructions: | |
1. Add an HTML field to your form. | |
2. Copy and paste the entire contents of this snippet into the "Content" field setting. | |
--> | |
<script> | |
gform.addFilter( 'gppc_copied_value', function( value, $elem, data ) { | |
$source = jQuery( '#input_' + data.sourceFormId + '_' + data.source ); | |
if( $source.is( 'select' ) ) { | |
value = $source.find( 'option:selected' ).text(); | |
} | |
return value; | |
} ); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👉 This Gist has been migrated to the Gravity Wiz Snippet Library:
https://github.com/gravitywiz/snippet-library/blob/master/gp-copy-cat/gpcc-copy-label.js