I have script already working to change select items (dropdowns) and input areas to have red text when they are changed in a specific version of a form; however, I can't figure out how to get checkboxes to show red (either the checkmark itself or the label) if they are changed.
Also, my existing scripts are apparently not targeting multi-line fields. Can someone help me with the script to target them as well? Both portions of my code relating to making changed fields appear red are below:
//When any change is made to a field with the .apchange class, make the input text red
$(document).on('change', '.apchange input', function(){
$(this).css('color', 'red');
});
//When any change is made to a field with the .apchange class, make the selected dropdown item red
$(document).on('change', '.apchange select', function(){
$(this).css('color', 'red');
});
Any help is appreciated!