I have a webpage file (page.html) and I use javascript to make it work. I have these two sources of js / jquery in my header tag:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script> ... my custom js functions ... </script>
When I open that html page in IE11, I get this message:
Internet Explorer restricted this webpage from running scripts or ActiveX controls.
I never see that message when I visit big websites like e.g. pubmed (https://www.ncbi.nlm.nih.gov/pubmed/). But when I right-click and hit "Q" to observe the source code of pubmed, I see that there are <script>
tags too. Why does my own js get blocked?