Ionic app issue on internet explorer 10

Hello ,
i’ve got a problem with internet explorer 10 whene i run my app .
This is the error on console:

and this my index file

<!DOCTYPE html>
<html lang="en" ng-app="starter">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=0.8, maximum-scale=1, user-scalable=no, width=device-width">
    <title>XMS WEB CLIENT</title>
    <!-- your app's css -->
    <link href="css/app.css" rel="stylesheet">
    <!-- ionic/angularjs scripts -->
    <link href="http://code.ionicframework.com/1.0.0-beta.9/css/ionic.css" rel="stylesheet">
    <script src="http://code.ionicframework.com/1.0.0-beta.9/js/ionic.bundle.js"></script>
    <!-- your app's script -->
    <script src="js/app.js"></script>
    <script src="js/services.js"></script>
    <script src="js/controllers.js"></script>
    <script src="js/directives.js"></script>
</head>
<body>
    <ion-nav-view></ion-nav-view>
</body>
</html>

thanks :slight_smile:

And i have to say it again…
no OFFICIAL IE support^^.

And if there is no IE mobile support -> there is no standard IE Support.

@ouss As bengtler said, IE is not in the list of the supported browsers.
More importantly, why are you trying to run your app in IE? I’m afraid that you might be doing something very wrong, I don’t see what ionic apps have to do with IE.

I now that but i test this code http://codepen.io/ionic/full/tfAzj/ on IE and it run without any problems ,and in my SRS i must run the project on IE (browser and mobile), i hope soon

hey , i found the problem on IE and i fixed it :), so this what i got in chrome and IE10
how can i fixe checkbox style
app runing in chrome :

in IE10 :

IE10 does not support many special css styling things ionic did (like -webkit tranformations and so on) and IE10 does not support many css standard attributes for css3.

You could try to add your own checkbox handling -> set checkbox visibility hidden and add custom image -> if click change image oder styling and set checkbox checked/unchecked.