Catch change event on input field dynamically added to Jquery Datatables table
The answer to that question is actually wrong. (He updated the answer!) You have to bind the event to a parent element because the input
doesn't exist yet in order to bind the event to.
$(document).on('change', '.maintCostField', function() {
FIDDLE