Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

JS doesn't work after I uploaded to github, what could be the problem?

https://tigrelwrynn.github.io/

My javascript is completely ignored after I uploaded the page to github. It is written in hungarian but you can understand what I wanted to do if you take a look at my commits. It is a test right now but it's gonna be my portfolio page if I finally finish it so it's really important for me, any help is appreciated.

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

You've got the following error in console: Mixed Content: The page at 'https://tigrelwrynn.github.io/' was loaded over HTTPS, but requested an insecure script 'http://code.jquery.com/jquery-1.12.4.min.js'. This request has been blocked; the content must be served over HTTPS.

Because the GitHub page is using HTTPS any external scripts need to be loaded with the same. Adding the "s" to the url for jquery should fix it.

I've updated the link and uploaded it to my official account. Now it's working huge thanks to you.