Can I avoid "Internet Explorer restricting this web page to running scripts or ActiveX Controls"?

I have some html pages that need to be run from a local DVD; html pages use jquery and knockout.js.

They work fine on Firefox, Safari, Chrome, but from IE9, for every page I get the error "Internet Explorer limited to this web page from running scripts or ActiveX controls." The pages need to be executed from a local DVD, so I can't be sure that users are changing their browser security level ... is there a way to avoid the message from html pages / script?

+3


source to share


1 answer


Moves scripts down the path from your HTML ... / scipts / won't work. {yourhtmlpageroot} / scripts /



if they are upstream of the DOM page, security breaches are due to the browser thinking that the page is trying to access scripts somewhere else on your computer, as it is a document path stream.

+3


source







All Articles