Skip to content

Instantly share code, notes, and snippets.

@mpstenson
Created August 1, 2018 19:22
Show Gist options
  • Save mpstenson/0533931d0f47b7a97f467448b1f8bf2f to your computer and use it in GitHub Desktop.
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
$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