I have an ajax call that uses the following code to add some rows to a data table for each record in the response:
strAppName = data.Application_Name
maintCo
you can also use $(document).on('input', '.maintCostField', function () {
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