I tried this below Jquery in field description under Modify configuration scheme context, but it doesn’t worked
jQuery(document).ready(function () {
if (jQuery('#customfield_10215').val()=="On Target") {
document.getElementById("customfield_16904").style.backgroundColor= 'red';
} else if (jQuery('#customfield_16904').val()=="Assist") {
document.getElementById("customfield_16904").style.backgroundColor= 'yellow';
} else if (jQuery('#customfield_16904').val()=="Watch") {
document.getElementById("customfield_10215").style.backgroundColor= 'green';
}else if (jQuery('#customfield_16904').val()=="Done") {
document.getElementById("customfield_16904").style.backgroundColor= 'yellow';
}
});
Regards,
Imran Basha M.