JQuery plugin does not work on github pages

0

I put a JQuery plugin called nice scroll for the page to scroll slowly, but when I open the page on github pages it does not work, the rest of the script and css are all working except for them, does anyone know why?

    
asked by anonymous 23.01.2017 / 20:30

1 answer

2

Error in debug : The request was blocked because the link does not come from a secure address .

  

Mixed Content: The page at ' link ' was loaded over HTTPS, but requested an insecure script ' link '. This request has been blocked; the content should be served over HTTPS.

must be a https such as:

  

   link

<script 
  src="https://cdnjs.cloudflare.com/ajax/libs/jquery.nicescroll/3.6.8/jquery.nicescroll.min.js"></script>

Link - jquery.nicescroll

    
23.01.2017 / 20:40