IE11 - Critical Error: Object doesn't support property or method 'addEventListener'
Add this code within the body tag and all is good.
<script type="text/javascript">
/* IE11 Fix */
if (typeof (UserAgentInfo) != 'undefined' && !window.addEventListener) {
UserAgentInfo.strBrowser = 1;
}
</script>
Comments
Post a Comment