S.Javed
S.Javed

Reputation: 21

Error: 'Node' is undefined. javascript error

I have written the following code in the HTML file.

 <!DOCTYPE html>
    <html lang="en" ng-app>
    <head>
        <title>Project Tracking Home Page</title>
        <script src="Scripts/jquery-2.1.0.min.js"></script>
        <link href="CSS/bootstrap.min.css" rel="stylesheet" />
        <link href="CSS/Site.css" rel="stylesheet" />
        <script src="Scripts/bootstrap.min.js"></script>
        <script src="Scripts/angular.min.js"></script>
    </head>
    <body>
        <h1>Welcome To Project Tracker</h1>
        <p>Addition of Two Numbers (100+100) is - {{100+100}}</p>
    </body>
    </html>

The binding expressions do not return the value instead they are shown as it is. When i run this code, i find the error ''Node' is undefined.'

I have used NuGet packages to install the Angular Js and JQuery into the scripts folder.

Upvotes: 2

Views: 3494

Answers (2)

Vladimir
Vladimir

Reputation: 369

If it's IE, try this: <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

Upvotes: 0

Elakkuvan
Elakkuvan

Reputation: 17

Make sure that your browser's document mode is greater than IE 8

Upvotes: 1

Related Questions