[Solved]Why does my JavaScript code receive a "No 'Access-Control-Allow-Origin' header is present on the requested resource" error

Updated: Feb 12, 2023

This error occurs when a JavaScript code tries to make a cross-origin request to a different domain or port than the one it originated from, and the server that receives the request does not explicitly allow this behavior. The Access-Control-Allow-Origin header is a security measure that restricts cross-origin resource sharing (CORS) to protect users from malicious attacks.


To fix this error, the server needs to explicitly allow cross-origin requests from the JavaScript code's domain or port by setting the Access-Control-Allow-Origin header to the appropriate value. This can be done using server-side scripting languages like PHP, Ruby, Python, or through server configurations like Apache or Nginx.

Here's an example of how to set the Access-Control-Allow-Origin header in PHP:

header('Access-Control-Allow-Origin: *');

This code sets the header to allow all domains to access the resource. However, for security reasons, it's best to set this to the specific domain that the JavaScript code is coming from.

If you don't have control over the server that's returning the error, there are a few workarounds you can try:

  1. Use a proxy server: You can use a proxy server to make requests on behalf of the JavaScript code. This way, the request will appear to be coming from the same domain as the JavaScript code, and the server won't block it.
  2. JSONP: If the server returns JSON data, you can use JSONP (JSON with Padding) to circumvent the CORS restriction. JSONP works by injecting a script tag into the DOM that loads the JSON data as a callback function.
  3. CORS extensions: Some browsers have extensions that allow you to override the CORS restriction. However, this is not a recommended solution as it can compromise the security of the user's browser.

In conclusion, the "No 'Access-Control-Allow-Origin' header is present on the requested resource" error is a common issue when making cross-origin requests. The solution involves setting the Access-Control-Allow-Origin header on the server-side or using workarounds like a proxy server or JSONP. It's important to follow security best practices and only allow cross-origin requests from trusted domains.