What are potential drawbacks of loading an external widget over HTTP when my website is accessible over HTTPS ?
<!-- https://www.example.com -->
<script src="http://www.external-source.com/widget.js"></script>
Are any warnings going to be displayed to the user? Any way to suppress them? Will this script be loaded in all times?
EDIT:
What happens when we load an external JS over HTTPS, but with non-commercial certificate? Will the warnings be shown?