Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaScript critical error at line 5, column 9 in (unknown source location)

I am using visual studio 2012

I have this simple html page, not asp.net page:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Test Float</title>
    <link rel="stylesheet" href="Styles/style.css" />
</head>
<body>
    <div class="header"></div>
    <div class="slideBar"></div>
    <div class="content"></div>
    <div class="footer"></div>
</body>
</html>

I run it on google chrome. it works good.

when I debug it on internet explorer. I got this error:

enter image description here

Edit

For those who think that the sytle sheet is the problem. here is my style sheet

html, body {
margin:0px;
height:100%;
}
.header {
    width:100%;
    height:20%;
    background-color:red;
}
.footer {
    width:100%;
    height:20%;
    background-color:green;
}
.slideBar {
    width:20%;
    height:60%;
    float:right;
    background-color:blue;
}
.content {
    width:80%;
    height:60%;
    background-color:yellow;
}

It is working very good on google chrome and mozilla. the code is very very simple. just that IE11 is not

Edit2

After I added my html page link to the compatibility mode. I got this exception:

enter image description here

like image 728
user2208349 Avatar asked Mar 20 '23 20:03

user2208349


1 Answers

Your browser is apparently running an add-on that injects scripts into loaded pages, and these scripts cause problems with IE11 (and 10).

You can configure Visual Studio to run IE in safe mode by adding an iexplore -extoff entry to the Browse With list and setting it as default, as explained here.

That said, I would recommend investigating which add-on is responsible for this situation, as it may have other adverse effects to your web usage (and to your privacy), and you may want to remove it if at all possible.

like image 174
Frédéric Hamidi Avatar answered Mar 22 '23 09:03

Frédéric Hamidi