jQuery( function ( $ ) { $( 'select[name^="wpo_wcpdf_settings_ubl_taxes"][name$="[scheme]"], \ select[name^="wpo_wcpdf_settings_ubl_taxes"][name$="[category]"], \ select[name^="wpo_wcpdf_settings_ubl_taxes"][name$="[reason]"]' ).on( 'change', function () { let currentValue = $( this ).data( 'current' ); let newValue = $( this ).find( 'option:selected' ).val(); let $current = $( this ).closest( 'td, th' ).find( '.current' ); let newHtml = `${wpo_wcpdf_ubl.new}: ${newValue} (${wpo_wcpdf_ubl.unsaved})`; let oldHtml = `${wpo_wcpdf_ubl.code}: ${currentValue}`; // Only update the '.current' element if the value has changed if ( newValue !== currentValue ) { $current.html( newHtml ); } else { $current.html( oldHtml ); } // Display the remark if available if ( $( this ).attr( 'name' ).endsWith( '[reason]' ) ) { let remark = wpo_wcpdf_ubl.remarks[ 'reason' ][ newValue ]; if ( remark ) { $( this ).closest( 'tr' ).find( '.remark' ).html( remark ); } else { $( this ).closest( 'tr' ).find( '.remark' ).html( '' ); } } } ); } );