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?