Is there a universal function for jquery to detect any changes on the site in model DOM?
For example i have few function in jQuery – with click, submit, mouseover etc. Is possible to detect these all?
$(document).?CHECKALL?(function(){
alert('detected change!');
})
Is this possible with javascript and jQuery?
Depending on what you do with this event, this is going to slow down the browser. Be careful with such a function!