You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This script does not work in Internet Explorer [which is installed by default in Windows Server 2019].
It does not work because it uses MS-reserved names, such as default, catch, finally, return etc.
For example: Object.prototype.hasOwnProperty.call(g,"default")?g.default, return:function(){jo=!0}};, if(!wk.catch||!wk.finally)return!0;.
All such names should be framed with single quotes.
All these errors are displayed in the developer Tools console built into IE.
The text was updated successfully, but these errors were encountered:
This script does not work in Internet Explorer [which is installed by default in Windows Server 2019].
It does not work because it uses MS-reserved names, such as
default
,catch
,finally
,return
etc.For example:
Object.prototype.hasOwnProperty.call(g,"default")?g.default
,return:function(){jo=!0}};
,if(!wk.catch||!wk.finally)return!0;
.All such names should be framed with single quotes.
All these errors are displayed in the developer Tools console built into IE.
The text was updated successfully, but these errors were encountered: