
Error Loading player on IEs but works on Chrome
this is my page, I have a problem in embedding my player, however it works on chrome and firefox and IE11 but not in IE10, IE9 nor IE8
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HTML 5 RTMP Test</title>
<script src="jwplayer/jwplayer.js"></script>
<script>
jwplayer.key = "xyz=";
</script>
</head>
<body>
<div id="player">
<a>Loading the player...</a>
</div>
<script type="text/javascript">
jwplayer("player").setup({
width: "650",
height: "360",
primary: "html5",
autostart: "true",
file: "rtmp://wowza.company.com:1935/vod/sample.mp4"
});
</script>
</body>
</html>