Advertisement
Guest User

jquery error

a guest
Aug 27th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.48 KB | None | 0 0
  1. /* index.html */
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>Javascript Book</title>
  7.     <link rel="stylesheet" href="main.css">
  8.     <script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
  9. </head>
  10. <body>
  11.     <h1>My first application</h1>
  12.     <p>Welcome to <i>Learning Javascript, 3rd edition</i>.</p>
  13.  
  14.    
  15.  
  16.     <script src="main.js"></script>
  17. </body>
  18. </html>
  19.  
  20. /* main.js */
  21. $(document).ready(function() {
  22.     'use strict';
  23.     console.log('main.js loaded');
  24. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement