Next-Gen App & Browser Testing Cloud
Trusted by 2 Mn+ QAs & Devs to accelerate their release cycles

Get a comprehensive guide on dealing with script errors in JavaScript. Learn best practices to prevent, detect, and resolve errors for optimized code performance.
Deeksha Agarwal
December 27, 2025
If someone tries to violate the rule that you have set, what you’ll do in return? Send him Script error.
Not in real life, though. 😉
But in JavaScript, if you try to violate the same origin policy, the browser will send you ‘’Script error’ in return.

When an exception violates the same origin policy of a browser in response to onerror callback, the browser responds with a ‘script error’.
Same Origin policy: According to same origin policy, the browser accepts only the scripts hosted on the same server on two different web pages.
Every browser has a set of acceptable or say, required ‘Request Headers’. When you hit any request on the server, it should contain those essentials for request header. Else you are going to face an script error.

Well, this is an intentional behaviour by the browsers in order to prevent scripts from leaking to external domains. As no one wants to entertain the unwanted requests 😉 Do you?
If you also face the same issue, then go ahead with these possible solutions.
Access-Control-Allow-Origin: *By setting Access-Control-Allow-Origin: to ‘ * ’, you make sure that you can access the resource from any domain. If necessary, you can also replace the ‘ * ‘ by the specific domain name, which you want that should access your domain’s script.
There is different method to set his to * in different environments.
Apache: Create an .htaccess file in the folder where your JS file is served with:
Header add Access-Control-Allow-Origin "*"Ngnix: Add add_header directive as:
location ~ ^/assets/ {
add_header Access-Control-Allow-Origin *;
}HA Proxy: Add this asset:
rspadd Access-Control-Allow-Origin: *For every script in your HTML script, that you’ve set Access-Control-Allow-Origin, set crossorigin="anonymous"
<script src="http://another-domain.com/app.js" crossorigin="anonymous"></script>
This code tells that your browser to fetch the target file anonymously avoiding transmission of any user identifying information like HTTP credentials or cookies while requesting by the browser.
If you face any script error in your JavaScript code, hope this article may prove to be of help.
Did you find this page helpful?
More Related Hubs
TestMu AI forEnterprise
Get access to solutions built on Enterprise
grade security, privacy, & compliance