Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to construct URLs with the same scheme (presumably, "http:" or "https:") as the page that loaded the currently-running JavaScript. Modern browsers support simply omitting the scheme (for example, src="//example.com/test.js"), but this isn't fully cross-browser compatible. (I've read that IE 6 is the only browser that doesn't support it, but I still need compatibility with that version.)

The cross-browser way to do this seems to be to check document.location.protocol. For example, Google Analytics uses:

('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + ...

In Google's case, they wanted to use different domains depending on whether the request uses SSL, so that pattern makes sense. But I've seen others use the same pattern when only the scheme is changing:

('https:' == document.location.protocol ? 'https:' : 'http:') + "//example.com"

(One example is in the "Final Wufoo Snippet" at http://css-tricks.com/thinking-async/.)

I'd prefer to use this simpler expression instead:

document.location.protocol + "//example.com"

Should I really be concerned about the possibility of document.location.protocol taking on some value other than "https:" or "http:" when my code is used on sites I don't control?

share|improve this question

2 Answers

up vote 1 down vote accepted

It will always be set to something, but it may sometimes be set to a value that is neither "http" or "https". The three other values you're most likely to see are file: (for HTML files), about: (for iframe magic involving about:blank), and perhaps ftp:.

share|improve this answer
Oh, does iframe magic include cases where people programatically construct an iframe and then populate it from the parent frame's JavaScript? Now that you mention it, although I can imagine file: and perhaps ftp: coming up from time to time, I bet iframe magic is the most common case. – Jamey Sharp Nov 3 '12 at 23:30
Correct -- that's exactly where you'd be most likely to run into the about: protocol. – duskwuff Nov 3 '12 at 23:31

Should I really be concerned about the possibility of document.location.protocol taking on some value other than "https:" or "http:" when my code is used on sites I don't control?

Not particularly, but then again, there's no particular harm in your approach (pre-pending whatever the protocol is) instead. Google Analytics probably does the actual detection as much because they use a different host as anything else.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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