Beginner trying to get first command to work

Beginner trying to get first command to work

trying to get this simple .html command to change the text in the button from "it's a button" to "my button" like this guy does in this tutorial  https://youtu.be/G-POtu9J-m4?t=24s except it's not working for me. I have jquery-1.11.3 in the same folder that my index.html is in. I don't know what could be wrong.

  1. <!doctype html>
  2. <!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
  3. <!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
  4. <!--[if IE 8]>         <html class="no-js lt-ie9" lang=""> <![endif]-->
  5. <!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
  6.     <head>
  7.         <meta charset="utf-8">
  8.         <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  9.         <title></title>
  10.         <meta name="description" content="">
  11.         <meta name="viewport" content="width=device-width, initial-scale=1">
  12.         
  13.  <script src="jquery-1.11.3.js"></script>
  14.       
  15.     </head>
  16.     <body>                   
  17.                         <button id="thisButton">it's a button</button>
  18.         <script>
  19.             $(function(){
  20.            $('thisButton').html('my button');          
  21.            });           
  22.         </script>

  23.     </body>
  24. </html>