The problem here is the scheme relative url that you are using to load jQuery. Since I assume you are loading the html file locally, your page's scheme is file://. When you go to load jQuery using // as the source it is looking on your local filesystem for a folder called ajax.googleapis.com. Replace // in your script tag with https:// to solve your problem.