When running a Web application via visual studio I've just started getting a javascript error.
Below is the code it is trying to run
{
var _alreadyRunned = false;
setTimeout(function _watcherReady() {
if (window.document.readyState === "complete" && !_alreadyRunned) {
avastBHO.SERPWatcherOnReadyState();
_alreadyRunned = true;
} else {
timer = setTimeout(_watcherReady, 1000);
}
}, 1000);
};
I have tried switching off Avast, but I get the same error.