0

here is my code it work on medium security setting of IE but no at High here is my sample code

<!DOCTYPE html>

<html lang="en">
<head>

    <title>TEST</title>   
   <script type="text/javascript"  src="http://code.jquery.com/jquery-latest.js"></script>

    <script>
        $(document.documentElement).ready(function() {
            alert('hi');
        });
    </script>
</head>
<body>
</body>
</html>
Evaldas Buinauskas
  • 13,739
  • 11
  • 55
  • 107
M.ASIF
  • 1
  • 2
    Possible duplicate of [IE security settings set to high - javascript not working](http://stackoverflow.com/questions/8248653/ie-security-settings-set-to-high-javascript-not-working) – Thaillie Oct 26 '15 at 09:51
  • You can't. [It was already asked.](http://stackoverflow.com/questions/8248653/ie-security-settings-set-to-high-javascript-not-working) – Sleien Oct 26 '15 at 09:53

1 Answers1

0

By Default, JavaScript is disabled in HIGH security Settings.

maybe this could help you: https://support.microsoft.com/en-us/kb/315674

IBuzZBasHI
  • 21
  • 1
  • 4