Dave Ward says,

It’s not exactly light reading, but section 4.2 of RFC 3986 provides for fully qualified URLs that omit protocol (the HTTP or HTTPS) altogether. When a URL’s protocol is omitted, the browser uses the underlying document’s protocol instead.

Put simply, these “protocol-less” URLs allow a reference like this to work in every browser you’ll try it in:

//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js

It looks strange at first, but this “protocol-less” URL is the best way to reference third party content that’s available via both HTTP and HTTPS.

This would certainly solve a bunch of mixed-content errors we're seeing on HTTP pages -- assuming that our assets are available via both HTTP and HTTPS.

Is this completely cross-browser compatible? Are there any other caveats?

link|improve this question

feedback

3 Answers

up vote 48 down vote accepted

I tested it thoroughly before publishing. Of all the browsers available to test against on Browsershots, I could only find one that did not handle the protocol relative URL correctly: an obscure *nix browser called Dillo.

There are two drawbacks I've received feedback about:

  1. Protocol-less URLs may not work as expected when you "open" a local file in your browser, because the page's base protocol will be file:///. Especially when you're using the protocol-less URL for an external resource like a CDN-hosted asset. Using a local web server like Apache or IIS to test against http://localhost addresses works fine though.
  2. Apparently there's at least one iPhone feed reader app that does not handle the protocol-less URLs correctly. I'm not aware of which one has the problem or how popular it is. For hosting a JavaScript file, that's not a big problem since RSS readers typically ignore JavaScript content anyway. However, it could be an issue if you're using these URLs for media like images inside content that needs to be syndicated via RSS (though, this single reader app on a single platform probably accounts for a very marginal number of readers).
link|improve this answer
Thanks, Dave :) – a paid nerd Mar 6 '11 at 18:42
6  
While IE7/8 handles protocol-relative URLs (aka. schemeless URIs) well in most cases, when stylesheets are specified with such URLs, it will download them twice. (So says Steve Souders) – lucasrizoli Apr 29 '11 at 20:48
1  
I'm finding that IE6 attempts to convert the URI to a relative one (i.e. removing one of the leading slashes). This is in a link element. For example, when specifying //fonts.googleapis.com/css?family=Rokkitt:400,700, IE6 tries to load http://mysite.com/fonts.googleapis.com/css/<...>. Not so good! – CBono Sep 28 '11 at 13:55
1  
I've found from my logs instances of what seem to be web spider robots (source unknown) trying to use the protocol-less links and not handling them correctly as well. – Tchalvak Oct 13 '11 at 16:25
1  
I've seen a lot of that in my logs, unrelated to protocol-less URLs. A lot of those spiders are just incredibly poorly written. – Dave Ward Oct 13 '11 at 18:13
feedback

Yes, network-path references were already specified in RFC 1808 and should work with all browsers.

link|improve this answer
6  
It is even recommended and used in the HTML5 boilerplate code: html5boilerplate.com – Felipe Lima Jan 28 '11 at 18:34
whit Yes, you do not answer Yes to " Are there any other caveats?" ? ;) – Caspar Kleijne Jan 28 '11 at 18:43
2  
@Caspar Kleijne: I explained the Yes with the rest of the sentence. – Gumbo Jan 28 '11 at 18:44
Casper, Gumbo was actually answering the two questions asked: "Is this completely cross-browser compatible? Are there any other caveats?" Yes is the answer to the first question. – D-Money Oct 17 '11 at 21:41
feedback

If you use protocol-less URLs to load stylesheets, IE 7 & 8 will download them twice: http://www.stevesouders.com/blog/2010/02/10/5a-missing-schema-double-download/

So, this is to be avoided for CSS if you like good performance.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.