Example of Event Handlers in HTML5 CORS


Cross-origin resource sharing (CORS) is a mechanism to allows the restricted resources from another domain in a web browser

For suppose, if you click on HTML5- video player in html5 demo sections. It will ask camera permission. If the user allows the permission then only it will open the camera or else it doesn't open the camera for web applications.

The following is an example of event handlers in CORS:

xhr.onload = function() {
   var responseText = xhr.responseText;
   // process the response.
   console.log(responseText);
};
xhr.onerror = function() {
   console.log('There was an error!');
};

Updated on: 29-Jan-2020

99 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements