user4522478
user4522478

Reputation:

Angular Routing not working in Internet Explorer

I am currently using routeProvider to load a partial in the usually way. This works in Chrome, however, this does not work in Internet Explorer 11.

The links are in the form href="#/routehere", and it works when I manually paste the URL into the browser, but not when I click on the links.

What is going on here?

Upvotes: 2

Views: 4532

Answers (1)

shrestha rohit
shrestha rohit

Reputation: 2940

if you have missed this one

<html xmlns:ng="http://angularjs.org"> #  Angular Docs says

OR you may try adding this to the header

<meta http-equiv="X-UA-Compatible" content="IE=8">

Upvotes: 2

Related Questions