Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 7, 2022 01:33 pm GMT

(Unknown): Script Error in JavaScript

If someone tries to violate the rule that you have set, what youll 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 Script Error Occurs In A JavaScript Code?

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?

I am facing an Script Error In JavaScript, What Should I Do?

If you also face the same issue, then go ahead with these possible solutions.

1. Set up Cross-Origin HTTP header

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 domains script.

Note: MultipleFailureException happens when Junit runner recognize many failures and collect them into one.

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:\ *

Note: InvalidOrderingException happens when test execution ordering is wrong and junit runner is not able to invoke them.

2. Set crossorigin=anonymous

For every script in your HTML script, that youve set Access-Control-Allow-Origin, set crossorigin="anonymous"

<script src="[http://another-domain.com/app.js](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.


Original Link: https://dev.to/lambdatest/unknown-script-error-in-javascript-4iok

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To