Forked from spivurno/gp-copy-cat-copy-label.html
Last active
August 13, 2018 06:29
-
-
Save anthonycoffey/c2bfe50b8a3395d6da862394263116d2 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.replace('.1','') ); | |
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
On line 11, I added .replace('.1','') to remove .1 from the end of the field selector and then using "copy-2.1-to-42" worked
data.source.replace('.1','')