Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function start() {
  2. jQuery('body').bind("DOMSubtreeModified",function(event){
  3. event.preventDefault();
  4. console.log('stop changing');
  5. });
  6.  
  7. setTimeout(start, 1500);
  8. }
  9.  
  10. // boot up the first call
  11. start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement