Created
August 1, 2018 19:22
-
-
Save mpstenson/0533931d0f47b7a97f467448b1f8bf2f to your computer and use it in GitHub Desktop.
Set the customer id based on the select of a custom field select list
This file contains hidden or 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
$jq(document).ready(function(){ | |
$jq(document.body).on('change', '#Custom2' ,function(){ | |
{ | |
$jq("#sUserId").val($jq("#Custom2").val()); | |
}}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment