Browser security when calling HTTP assets via a SWF on a HTTPS site
- by Mark Ursino
We have a site that runs on HTTPS and needs to pull in various JS assets to run a video player on the page. We get a browser security warning on this page because the JS files we are externally calling are being accessed via HTTP, not HTTPS. E.g.
// HTTP reference on a HTTPS site
<script src="http://the-cdn.tld/player.js"></script>
…