IE8 javascript error
-
There seems to be an issue in the front.js file that affect IE8 (I know!) and produces a ‘Not Implmeneted’ error message on clicking okay.
It is because on line 50 there is the following line:
self = this;This is trying to over ride a reserved (at least in IE) variable. A fix is to scope that variable to the local function:
var self = this;
The topic ‘IE8 javascript error’ is closed to new replies.