I know that HTTP
is hyper text transfer protocol, and I know that's how (along with HTTPS
) one accesses a website. However, what does just a //
do? For instance, to access Google's copy of jQuery, one would use the url //ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
, as opposed to http://...
.
What exactly is the difference? What does just //
indicate?
Thanks.