Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <link rel="stylesheet" href="style.css">
  6. <script data-require="jquery" data-semver="2.1.1" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  7. <script type="text/javascript">
  8. $(document).ready(function() {
  9. // executes when HTML-Document is loaded and DOM is ready
  10. console.log("document loaded at "+new Date());
  11.  
  12. });
  13. $(window).load(function() {
  14. // executes when complete page is fully loaded, including all frames, objects and images
  15. console.log("window loaded at "+new Date());
  16. });
  17. </script>
  18. </head>
  19.  
  20. <body>
  21. <h1 class="red">First element :-)</h1>
  22. <script src="https://httpbin.org/delay/60"></script>
  23. <h1 class="blue">Second element:-)</h1>
  24. </body>
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement