My website's HTTPS version is having trouble loading JavaScript. All scripts are hosted on the same server.
I've attempted:
<script type="text/javascript" src="https://server.tld/js/jquery.js">
<script type="text/javascript" src="//server.tld/js/jquery.js">
<script type="text/javascript" src="js/jquery.js">
Despite this, all major browsers are blocking the content.
"This page contains script from unauthenticated sources."
UPDATE
Mistake on my part. I unknowingly included some "http" links in the JavaScript file, causing the browser to block the content due to mixed security protocols.