Slick Slider Not Working

Slick Slider Not Working

I am trying to use the Slick slider plugin. I tried downloading the physical files and linking to them and I have tried linking to the CDN file paths for them, but nothing happens. Nothing is styled and nothing functions. I used the Slick set up tutorial and looked up solutions, but alas, nothing helps. I'm hoping someone can assist me on this. Here is my simplified test of the Slick Slider, this one uses the CDN file paths:

  1. <!DOCTYPE HTML>

  2. <html class="no-js">
  3.     <head>
  4.         
  5.         <meta charset="utf-8">
  6.         <title>Slick Slider Test</title>
  7.         
  8.         <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css"/>
  9. <!-- Add the slick-theme.css if you want default styling -->
  10. <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick-theme.css"/>
  11.         
  12.         <script src="https://code.jquery.com/jquery-migrate-3.0.0.min.js" integrity="sha256-JklDYODbg0X+8sPiKkcFURb5z7RvlNMIaE3RA2z97vw=" crossorigin="anonymous"></script>
  13.         <script src="https://code.jquery.com/jquery-migrate-3.0.0.min.js" integrity="sha256-JklDYODbg0X+8sPiKkcFURb5z7RvlNMIaE3RA2z97vw=" crossorigin="anonymous"></script>
  14.        
  15.        
  16.     </head>



  17. <div class="slide-viewer">
  18.     <div class="slide slide-1">
  19.         <img src="common/art/projects/ofs/artichoke_rd4.png" >
  20.     </div> <!-- end -->
  21.     <div class="slide slide-2">
  22.         <img src="common/art/projects/ofs/artichoke_rd4.png" >
  23.     </div> <!-- end -->
  24.     <div class="slide slide-3">
  25.         <img src="common/art/projects/ofs/artichoke_rd4.png" >
  26.     </div> <!-- end -->
  27. </div> <!-- endSlideViewer -->




  28. <script type="text/javascript" src="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick.min.js"></script>

  29. <script>
  30.     
  31. $(".slider_viewer").slick({

  32.   // normal options...
  33.   infinite: false,

  34.   // the magic
  35.   responsive: [{

  36.       breakpoint: 1024,
  37.       settings: {
  38.         slidesToShow: 3,
  39.         infinite: true
  40.       }

  41.     }, {

  42.       breakpoint: 600,
  43.       settings: {
  44.         slidesToShow: 2,
  45.         dots: true
  46.       }

  47.     }, {

  48.       breakpoint: 300,
  49.       settings: "unslick" // destroys slick

  50.     }]
  51. });


  52. </script>

  53. </body>
  54.     
  55. </html>