Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaScript not working on Internet Explorer 10

I'm on Windows 7, and just upgraded IE to 10. It works fine, except that Javascript isn't working. I know that it is enabled, as I can go into the settings and disable it, and then I get the "no js" output. But with it enabled, I get nothing. No errors in the JS console. The same script in Firefox gives me "hello".

Browser Mode is "10" and Document Mode is "Standards", though changing these doesn't yield anything different. Here is the entire page:

<!DOCTYPE HTML>
<html>
  <body>
<script type="text/javascript">
document.write('hello');
</script>
<noscript>no js</noscript>
  </body>
</html>

Similar results on other websites -- if I go to a page that uses Disqus comments, I just get a blank space. If JS were disabled, Disqus would return a message saying so.

Thanks.

like image 502
ray.gurganus Avatar asked May 29 '13 02:05

ray.gurganus


1 Answers

I solve this problem. F12 -> Disable -> Script (uncheck)

like image 154
user2192293 Avatar answered Oct 30 '22 11:10

user2192293