I am having issues with the bind function in Opera.
Case:
jQuery: v1.8
Opera: v12.13 Build: 1734
OS: Windows 7 64bit
I am binding the document to monitor changes in DOM Subtree.
jQuery(document).bind('DOMSubtreeModified', function() {
console.log("DOMSubtreeModified");
});
Working fine on Chrome/FireFox/IE8+. But in Opera the callback is never triggered. I have been looking in the forums but did not see any reported issue. Any insight as to why this might be happening?
It is not supported by Opera:
http://my.opera.com/community/forums/topic.dml?id=154019 and
http://help.dottoro.com/ljrmcldi.php
Here you may find some info about how to check if DOM is modified without that event.