Rank: Newbie Groups: Member
Joined: 12/11/2019 Posts: 4
|
Can I customize "window. eoapi" ,"window.eoapi_VerifyThis", "window.eoapi_ extinvoke" the display names of these three built-in objects, because others are detecting these names to prevent our browsers from accessing their websites.This is the JavaScript code to block.
Code: JavaScript
var d = ["eoapi", "eoapi_VerifyThis", "eoapi_extInvoke"];
for (var c in window) {
if (d.indexOf(c) > -1) {
g = true;
break
}
}
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi, We have already clearly answered your question previously in this thread: https://www.essentialobjects.com/forum/postst12121_Browser-blocked-windoweoapi--windoweoapi-VerifyThis--windoweoapi-extInvoke.aspxPlease do not post duplicate questions again that we have already previous answered. You will NOT receive a different answer just by posting the same question again. If you have new information that may materially change the context of the original question, please feel free to reply in the original thread and we will look into any new information you may have. However you should not just post the same question again and expect a different answer. Thanks!
|