i am trying to send an HTTP request to specific website and i am facing error:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://www.google.com/. (Reason: CORS header 'Access-Control-Allow-Origin' missing).
say for instance that i want to send request to Google.com and receive the HTML response. my code was written using JQUERY AJAX:
function sendRequest(URL) {
          $.ajax({
            type:'GET',
            url:URL,
            success:function(result){console.log(result);}
          });
        }
 
     
    