If loading jQuery from CDN with ...
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/...
... then it will not be accepted if the website is HTTPS (Blocked loading mixed active content "http://ajax.googleapis.com/ajax/...
).
The solution seems to be :
<script type="text/javascript" src="//ajax.googleapis.com/ajax/...
Indeeed it will work if the website is HTTP or HTTPS. But when working on the file locally (i.e. browse the file on my hard drive), then jQuery is not loaded with this solution.
This is important for me, that people who will download my GitHub project will be able to test it locally.
How to include jQuery properly with CDN, and be able to browse locally the HTML file?