I\'m using the google translate widget on one of my sites with the following google supplied code:
<
You can detect changes like this:
$('#some-translatable-element').bind('DOMSubtreeModified', function() {
yourCallback();
});
The drawback is that the event is beeing fired multiple times since google translate does multiple changes in the process.
A suggestion is to detect changes on the last element on your page, cause then you know all elements above is translated.