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:
02 | $(document).on( 'change' , '.apchange input' , function (){ |
04 | $( this ).css( 'color' , 'red' ); |
09 | $(document).on( 'change' , '.apchange select' , function (){ |
11 | $( this ).css( 'color' , 'red' ); |
Any help is appreciated!