show/hide this revision's text 2 Reference

Using this on HTTPS

<script type="text/javscript" src="http://xxx/yourjs.js"></script>

should throw up a warning to the user in all browsers - I'd expect IE8 to do the same but maybe it's a new "feature" to silently ignore it.

You should use the same protocol that the request is on, or failing that always HTTPS (though this will be slower for the user and put more load on your server).

You could specify the URL without the scheme - that should use the current one (http or https):

<script type="text/javscript" src="//xxx/yourjs.js"></script>

This was highlighted in another question but I don't think a source

Edit: Found the reference saying this is actually validwas ever posted - if anyone has one please leave it : RFC 2396

 relativeURI   = ( net_path | abs_path | rel_path ) [ "?" query ]

A relative reference beginning with two slash characters is termed a
network-path reference, as defined by in the comments and I'll add it to this answer - ThanksSection 3. Such
references are rarely used.

show/hide this revision's text 1

Using this on HTTPS

<script type="text/javscript" src="http://xxx/yourjs.js"></script>

should throw up a warning to the user in all browsers - I'd expect IE8 to do the same but maybe it's a new "feature" to silently ignore it.

You should use the same protocol that the request is on, or failing that always HTTPS (though this will be slower for the user and put more load on your server).

You could specify the URL without the scheme - that should use the current one (http or https):

<script type="text/javscript" src="//xxx/yourjs.js"></script>

This was highlighted in another question but I don't think a source saying this is actually valid was ever posted - if anyone has one please leave it in the comments and I'll add it to this answer - Thanks.