I know I can get/detect field value changes using jQuery on a repeater. As an example, using the following provides an alert when I change any select value.
$( 'select' ).on( 'change', function() {
alert( this.value );
});
However, when I add a new row (before saving) jQuery won’t detect any value changes of the new row. Does anyone have any idea if this is could work?
Never mind. My own fault.