from jQuery website:
As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers.
with version 1.7.1 i
Specific to the code submitted, as per the ramblings above;
Replace
$(".toBeSaved [col=ISRC] input").on('change',function() {
with
$(document).on('change','.toBeSaved [col=ISRC] input', function() {