I have worked in filter option. Here more than one input fields are there. Like one select, input text, button click. All are under one class named "filter-option". When any one of these modified I have to alert the value inside a jQuery.
I have tried below code but not working.
$("body").on('DOMSubtreeModified', "filter-option", function() {
alert('changed');
});