You are viewing limited content. For full access, please sign in.

Question

Question

copy one value to another

asked on March 31, 2015

I found an answers article to explain how to copy one value to another. This works great when I am using a single item field.

However, I am unable to copy a value from a drop down to a single item field. Please see the script I am running below. 

 

$('.state1 input').blur(function () {

        $('.fillState input').val($(this).val());

    });

 

        $('.fillState input').val($(this).val());

    });

0 0

Answer

APPROVED ANSWER
replied on March 31, 2015

Use

$('.state1 select')

instead of

$('.state1 input')
0 0
replied on February 22, 2016

Alexander,

What would I do if I have a custom HTML field that the user enters something into. I need that field to copy to a single line field. Any thoughts?

Thanks

0 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.