Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.54 KB | None | 0 0
  1. <html>
  2.   <head>
  3.     <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
  4.     <script type="text/javascript">
  5.       jQuery(document).ready(function(){
  6.  
  7.         $('#block').bind("DOMSubtreeModified",function(){
  8.           alert('changed');
  9.         });
  10.  
  11.       });
  12.  
  13.       // Emulate Taboola loading.
  14.       setTimeout(function(){
  15.         $('#block').html('<h1>Taboola!!!</h1>');
  16.       }, 3000);
  17.     </script>
  18.   </head>
  19.   <body>
  20.     <div id="block">
  21.       Loading....
  22.     </div>
  23.   </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement