change() function works and detects changes on form elements, but can I have a way of detecting when a html content was changed?
This is not working, unless #content is an input fields
$("#content").change( function(){
// do something
});
I want this to trigger when doing something like:
$("#content").html('something');
Also html() or append() function don't have a callback.
Any suggestions?