I have the following JavaScript that works beautifully:
$(document).ready(function(){ //Teams Fill Based on What's Checked $(".dcrReviewList").change(function () { if ($("input[id^=Field169-0]").is(':checked')) { $('.draftingTeam input').val("Drafting and Design"); } else { $('.draftingTeam input').val(""); } }) }); //close document.ready
The problem is that I now want to also do this for Nuclear Analysis, QA Project Support, Structural Analysis, and Thermal Analysis. If someone could guide me for Nuclear Analysis, I can figure out the rest.
I will eventually use this to create a Lookup based on the team. Thanks in advance!