vote up 8 vote down star
3

I have the following tag:

<script type="text/javascript" src="https://cdn.example.com/js_file.js"></script>

In this case the site is HTTPS, but the site may also be just HTTP. (The JS file is on another domain.) I'm wondering if it's valid to do the following for convenience sake:

<script type="text/javascript" src="//cdn.example.com/js_file.js"></script>

I'm wondering if it's valid to remove the http: or https: ?

It seems to work everywhere I have tested, but are there any cases where it doesn't work?

flag

70% accept rate
Can the "it seems to work everywhere" be generalised to images, iframes, link-rels etc etc? This is interesting stuff, if so. – 12345 Feb 15 at 1:10
Yup, it should work in any place that calls for a URI: images, links, etc. It may be rare to see this in use, but it's perfectly valid. – Jeff Feb 15 at 1:34

4 Answers

vote up 10 vote down check

A relative URL without a scheme (http: or https:) is valid, per RFC 3986. If a client chokes on it, then it's the client's fault because they're not complying with the URI syntax specified in the RFC.

Your example is valid and should work. I've used that relative URL method myself on heavily trafficked sites and have had zero complaints. Also, we test our sites in Firefox, Safari, IE6, IE7 and Opera. These browsers all understand that URL format.

link|flag
That doesn't appear to be a relative URL in the question. It looks like an absolute URL that's missing the protocol. – Chuck Feb 15 at 1:00
It is indeed relative. Take a look at RFC 3986, section 4. – Jeff Feb 15 at 1:07
I agree its relative, // == / relative begins with / absolute does not. So cdn.example.com/js_file.js is absolute but /cdn.example.com/js_file.js or //cdn.example.com/js_file.js is relative. – ng Feb 15 at 1:12
@Jeff: wow, I'd never come across that before. Cool stuff. – Miles Feb 15 at 1:24
"If a client chokes on it, then it's the client's fault because they're not complying with the URI syntax specified in the RFC." -- I think this is an interesting question -- but whether a client follows "the spec" is hardly a good standard for whether it's wise to do in a web app. – bigmattyh Feb 15 at 1:25
show 3 more comments
vote up 3 vote down

It is perfectly valid to leave off the protocol. The URL spec has been very clear about this for years, and I've yet to find a browser that doesn't understand it. I don't know why this technique isn't better known, it's the perfect solution to the thorny problem of crossing HTTP/HTTPS boundaries. More here: Http-https transitions and relative URLs

link|flag
vote up 0 vote down

If its in another domain, check out the HTTP Referer header. This will contain the referring page. From there take the scheme

Referer: https://some.other.domain/blah.html

Extract on the server side and add in to the page. However, have to say, I like the document.location.protocol solution proposed.

link|flag
vote up 1 vote down

This will work for both.

<script type="text/javascript">
document.write([
    "\<script src='",
    ("https:" == document.location.protocol) ? "https://" : "http://",
    "foo.js' type='text/javascript'>\<\/script>"].join(''));
</script>
link|flag
I wanted to avoid all the extra code. – Darryl Hein Feb 15 at 0:30
The protocol-less URL that Darryl showed will work for both. There's no need to jump through these hoops. – Ned Batchelder Feb 15 at 2:04
why not just use: document.location.protocol + "//foo.bar/script.js" ? – Charlie Somerville Jul 4 at 1:17

Your Answer

Get an OpenID
or

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