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'm using Facebook's javascript sdk and it has double forward slashes. What do they mean?

<script src="//connect.facebook.net/en_US/all.js"></script>

I know a single / means root directory, but what is //? Is that telling the source to use http:// and then the path?

share|improve this question
2  
See here, stackoverflow.com/questions/550038/… – Naren Mar 13 at 5:11

marked as duplicate by Phil, Dipesh Parmar, Thilo, dfsq, Iswanto San Mar 13 at 5:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 4 down vote accepted

This is a "protocol-relative" link. It uses http or https depending on what was used to load the current page.

share|improve this answer

It makes it protocol agnostic, if your page is served using https: it makes the request using https:

share|improve this answer

Please find the details in these links this explains why we need double slash

http://paulirish.com/2010/the-protocol-relative-url/

Double slash at beginning of javascript include

share|improve this answer

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