Change
to
Problem is that //ajax.googleapis.com
is used to avoid problems with different protocols (http/https). Browser will add protocol used for a page. When you open your HTML from a file on your hard drive, file:// protocol is used. And browser tries to load jquery using file://ajax.googleapis.com
, but that will not work because you have no folder ajax.googleapis.com
on your hard drive. So, simply specify protocol for jquery explicitly