Internet Explorer restricted script execution

2

Whenever I open the HTML page in IE I get the following message:

  

internet explorer has restricted the execution of scripts or activex controls

For the page to appear correctly I have to enable this. Is there any way to fix this in HTML itself?

To correct the Browser MODE can you also correct by HTML?

I found this but I did not really understand this solution.

Index.html

<head>

<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.dropotron.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-wide.css" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
</head>
    
asked by anonymous 02.02.2015 / 16:20

1 answer

5

The only way this does not appear is not to use ActiveX. This type of technology is dangerous to the user and only exists because of legacy issues.

As there is risk the user is at least warned of this and only he can determine if he can or can not execute something that can put him at risk.

Eventually the user can configure the browser not to report this but it is a decision of his and nothing recommended. No page developer can interfere with this.

The technology is so legacy that the main Windows 10 browser will not have it. There will still be Internet Explorer to run these legacy technologies, but it probably will not have any further updates in the future.

    
03.02.2015 / 01:03