2
Whenever I open the HTML page in IE the following message appears to me:
internet explorer has restricted the execution of activex scripts or controls
For the page to appear correctly I have to enable it. Is there any way to fix it in the HTML itself?
To fix the Browser MODE you can also fix by HTML?
I found this but I didn’t quite 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>
Yes, don’t use Activex.
– Maniero
There’s no other way?
– ChrisAdler
Not that I know of. This is a dangerous thing and the user needs to be made aware of it. He needs to authorize its execution explicitly. There is the possibility that it can configure the IE not to give this warning, but this is the option of the user not the developer of the page. And I don’t recommend anyone doing it. I don’t even know if I should have the option. The new Microsoft browser will even allow Activex to run so bad that it is.
– Maniero
It would be interesting for you to say what functionality you want to achieve with this. There is probably a better way to solve.
– Pablo Almeida