https://jsfiddle.net/doksul/1mc0y33k/
When i click submit button, change html a tag But jquery change event didn't catch this.
How do I get change html a tag text changed?
$('#aTag').change(function() {
$('#textReulst').val('changed');
});
$('#submit').click(function() {
$('#aTag').html('123');
});