IE security settings set to high - javascript not working

As soon as I set the IE security settings to high, javascript on my page stops executing. This does not generate an error or anything else, and does not even work. if I configure the security settings for the environment, everything will work as it should. Has anyone ever experienced this?

+4
source share
3 answers

This is design behavior.
The High security High disables Javascript.

+8
source

Setting security settings to a high level in Internet Explorer disables JavaScript:

High security settings

+7
source

you can use the noscript tag to display a message when javascript is disabled. But, as you can guess, you cannot write javascript inside this block.

0
source

Source: https://habr.com/ru/post/1382768/


All Articles