//$('tr[id^=system_type_] input').live('change', function() {
$('tr[id^=system_type_] input').on('change', function() {
alert('a');
console.log($(this).val());
});
its not the first time, but I read that live is deprecated so I want to use on. But why it does not work in this code?