Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

change() function works and detects changes on form elements, but is there a way of detecting when a DOM element's content was changed?

This is does not, unless #content is a form element

$("#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?

share|improve this question

12 Answers

up vote 19 down vote accepted

You must be talking about mutation events.

I have not used any mutation event APIs in jQuery, but a cursory Googleing led me to this project on GitHub. I an unaware of how mature this plugin is.

But by what I've seen, a lot of projects on GitHub are pretty decent.

Cheers!

share|improve this answer
51  
"... a lot of projects on github are pretty decent." I don't think one can make an assumption that grand on the contents of a source control site, regardless of who it is. – Danny Jul 7 '09 at 13:04
that may as well be the case, yes, but jollytoad's projects are pretty good: I follow him! – jrharshath Jul 7 '09 at 13:40
12  
This mutation events plugin won´t work, because it just hooks the events into the jQuery mutation methods. They are fired when jQuery itself tries to change the elements, but not when the elements gets changed from outside jQuery. They don't watch changes on the document. Check out this little plugin instead: stackoverflow.com/questions/3233991/jquery-watch-div/… – Sebastián Grignoli Jul 13 '10 at 21:49
Googling and posting a link to a library you've never tried isn't terribly useful. (Commenting because I was prompted to upon downvoting.) – sequoia mcdowell Nov 28 '12 at 16:31
2  
Mutation events are deprecated; do not use them. – Brock Adams Mar 1 at 6:59

I know this post is a year old, but I'd like to provide a different solution approach to those who have a similar issue:

  1. The jQuery change event is used only on user input fields because if anything else is manipulated (e.g., a div), that manipulation is coming from code. So, find where the manipulation occurs, and then add whatever you need to there.

  2. But if that's not possible for any reason (you're using a complicated plugin or can't find any "callback" possibilities) then the jQuery approach I'd suggest is:

    a. For simple DOM manipulation, use jQuery chaining and traversing, $("#content").html('something').end().find(whatever)....

    b. If you'd like to do something else, employ jQuery's bind with custom event and triggerHandler

    $("#content").html('something').triggerHandler('customAction');
    
    
    $('#content').unbind().bind('customAction', function(event, data) {
       //Custom-action
    });
    

Here's a link to jQuery trigger handler: http://api.jquery.com/triggerHandler/

share|improve this answer
1  
final thought. although that should be pretty comprehensive above: you could update the value of a hidden input field with that of the #content html and then bind the change event to the hidden input field :) lots of options – Emile Sep 1 '10 at 9:49
4  
+1 "Find where the manipulation occurs, and then add whatever you need to there." Fixed my issue in 2 seconds without any hacks/plugins :) – Hartley Brody Mar 29 '12 at 1:21

Try this, it was created by James Padolsey(J-P here on SO) and does exactly what you want (I think)

http://james.padolsey.com/javascript/monitoring-dom-properties/

share|improve this answer
For a cross browser version of Object.prototype.watch see gist.github.com/384583 – Radek Jan 27 '12 at 16:20

Try to bind to the DOMSubtreeModified event seeign as test is also just part of the DOM.

see this post here on SO:

how-do-i-monitor-the-dom-for-changes

share|improve this answer

The browser will not fire the onchange event for <div> elements.

I think the reasoning behind this is that these elements won't change unless modified by javascript. If you are already having to modify the element yourself (rather than the user doing it), then you can just call the appropriate accompanying code at the same time that you modify the element, like so:

 $("#content").html('something').each(function() { });

You could also manually fire an event like this:

 $("#content").html('something').change();

If neither of these solutions work for your situation, could you please give more information on what you are specifically trying to accomplish?

share|improve this answer
4  
This assumes you have written all the javascript, which may not be the case. – Myster Oct 11 '11 at 3:11
THANK YOU!!!! This just helped me solve a problem I had been staring at for 6 hours. – Jordan Parmer Jan 23 at 20:43

Try the livequery plugin. That seems to work for something similar I am doing.

http://docs.jquery.com/Plugins/livequery

share|improve this answer

And with HTML5 we have native DOM Mutation Observers (not crossbrowser yet)

share|improve this answer

Often a simple and effective way to achieve this is to keep track of when and where you are modifying the DOM.

You can do this by creating one central function that is always responsible for modifying the DOM. You then do whatever cleanup you need on the modified element from within this function.

In a recent application, I didn't need immediate action so I used a callback for the handly load() function, to add a class to any modified elements and then updated all modified elements every few seconds with a setInterval timer.

$($location).load("my URL", "", $location.addClass("dommodified"));

Then you can handle it however you want - e.g.

setInterval("handlemodifiedstuff();", 3000); 
function handlemodifiedstuff()
{
    $(".dommodified").each(function(){/* Do stuff with $(this) */});
}
share|improve this answer
1  
This assumes you have written all the javascript, which may not be the case. – Myster Oct 11 '11 at 3:11

I'm developing tiny JS library called mutabor (https://github.com/eskat0n/mutabor) which intended to simplify usage of DOM Mutation Events. See demo.html for examples.

share|improve this answer

Not possible, I believe ie has a content changed event but it is certainly not x-browser

Should I say not possible without some nasty interval chugging away in the background!

share|improve this answer
12  
impossible is nothing! – jrharshath Jul 7 '09 at 11:07

what about http://jsbin.com/esepal/2

$(document).bind("DOMSubtreeModified",function(){
  console.log($('body').width() + ' x '+$('body').height());
})
share|improve this answer
not a bad idea, although I wonder how much support has it. developer.mozilla.org/en/DOM/DOM_event_reference/… – Elzo Valugi Apr 4 '12 at 19:21

This plugin is very good, and you can add more mutations if you should need more than the default mutations provided...

http://www.jqui.net/jquery-projects/jquery-mutate-official/

it's very easy to use, just like you would, for any websites, and it also supports future elements, if you was to add elements using ajax or any other method.

share|improve this answer
1  
how come you named this "official"? this is kinda shady ... just name it jquery mutate plugin – Elzo Valugi Jan 11 at 8:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.