Jump to content

Copy the field value to another field


Recommended Posts

Just wanted to share how to copy the value from another field using web form/Submission Form. Thank you @DefinitelyNot31337

<script type="text/javascript">
 
  var src = document.querySelector('[id*=InsertRecord]');
  var dest = document.querySelector('[id*=InsertRecord]');
 
  src.onchange = function() {
    dest.value = this.value;
  }
  
</script>

 

Link to comment
Share on other sites

  • 1 year later...
  • 1 year later...

Hi there!

You would need to replace "InsertRecord" with the actual ID of the respective field.

You can find the ID of any field in the source code of a webpage.

For example, in the case below you will see that the ID of the "TotalPeople" field is "InsertRecordTotalPeople", so JS statement will look like this:

document.querySelector('[id*=InsertRecordTotalPeople]');

1884521923_Desktop2022-04-1021-12-03.thumb.png.1706042e036c3b6d9922d50a656c5d75.png

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...