click and change event jquery code example
Example 1: jquery on dom change
$("#someDiv").bind("DOMSubtreeModified", function() {
alert("tree changed");
});
Example 2: jquery on input
$('input').on('input propertychange', ()=>{});
$("#someDiv").bind("DOMSubtreeModified", function() {
alert("tree changed");
});
$('input').on('input propertychange', ()=>{});