valdeir2000

Untitled

Feb 9th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.78 KB | None | 0 0
  1. <!---------------->
  2. <!-- Index.html -->
  3. <!---------------->
  4.  
  5. <!DOCTYPE hml>
  6. <html>
  7.     <head>
  8.         <title>Title of the document</title>
  9.     </head>
  10.  
  11.     <body>
  12.        
  13.         <div id="ajax-content"></div>
  14.  
  15.         <!-- v3.3.1 -->
  16.         <script src="jquery.js"></script>
  17.         <script async="true" defer="true">
  18.         $.ajax({url: "index3.html"}).done(function(data) {
  19.             $("#ajax-content").html(data);
  20.         });
  21.         </script>
  22.     </body>
  23. </html>
  24.  
  25. <!----------------->
  26. <!-- Index3.html -->
  27. <!----------------->
  28. <div class="box">
  29.     <h1>HTML carregado assincronamente</h1>
  30. </div>
  31. <script src="meuScript.js" async="true" defer="true"></script>
  32.  
  33.  
  34. <!------------------>
  35. <!-- meuScript.js -->
  36. <!------------------>
  37. alert('agora não gera aviso');
Advertisement
Add Comment
Please, Sign In to add comment